From 8a15d16fa7fa20fb7d470d3f4117475938fcd190 Mon Sep 17 00:00:00 2001 From: llippeatt Date: Fri, 30 Aug 2024 10:15:37 -0400 Subject: [PATCH] initial setups as described --- .github/workflows/installation_and_tests.yml | 42 + .gitignore | 169 + README.md | 278 ++ __init__.py | 0 conftest.py | 18 + .../counts/counts.categories.csv | 11 + .../counts/counts.press_types.csv | 11 + .../counts/counts.research_topics.csv | 11 + data/processed_data/press.csv | 955 ++++++ data/processed_data/press.exploded.csv | 2805 +++++++++++++++++ data/raw_data/Visits_Report-Live.csv | 1615 ++++++++++ requirements.txt | 16 + setup.py | 35 + src/__init__.py | 0 src/config.yml | 81 + src/dashboard.py | 20 + src/pipeline.sh | 105 + src/transform.ipynb | 416 +++ test/__init__.py | 0 test/config.yml | 84 + test/config_grants.yml | 106 + test/lib_for_tests/__init__.py | 0 test/lib_for_tests/grants_user_utils.py | 118 + test/lib_for_tests/press_user_utils.py | 167 + test/test_lib.py | 498 +++ test/test_pipeline.py | 229 ++ .../counts/counts.categories.csv | 11 + .../counts/counts.press_types.csv | 11 + .../counts/counts.research_topics.csv | 11 + .../processed_data/press.csv | 569 ++++ .../processed_data/press.exploded.csv | 1698 ++++++++++ .../raw_data/News_Report_2023-07-25.csv | 556 ++++ .../raw_data/press_office.xlsx | Bin 0 -> 14879 bytes ...A_awards_data 2023-08-11T18_03_26.505Z.csv | Bin 0 -> 9275972 bytes .../raw_data/News_Report_2023-07-25.csv | 556 ++++ .../raw_data/press_office.xlsx | Bin 0 -> 14879 bytes visit_dash_lib/__init__.py | 0 visit_dash_lib/aggregator.py | 111 + visit_dash_lib/dash_builder.py | 211 ++ visit_dash_lib/data_handler.py | 253 ++ visit_dash_lib/data_viewer.py | 423 +++ .../events-live-backup-with-notes.csv | 1608 ++++++++++ visit_dash_lib/events-live-other.csv | 1608 ++++++++++ visit_dash_lib/interface.py | 685 ++++ visit_dash_lib/pages/__init__.py | 0 visit_dash_lib/pages/base_page.py | 222 ++ visit_dash_lib/settings.py | 136 + visit_dash_lib/user_utils.py | 201 ++ visit_dash_lib/utils.py | 37 + 49 files changed, 16697 insertions(+) create mode 100644 .github/workflows/installation_and_tests.yml create mode 100644 .gitignore create mode 100644 README.md create mode 100644 __init__.py create mode 100644 conftest.py create mode 100644 data/processed_data/counts/counts.categories.csv create mode 100644 data/processed_data/counts/counts.press_types.csv create mode 100644 data/processed_data/counts/counts.research_topics.csv create mode 100644 data/processed_data/press.csv create mode 100644 data/processed_data/press.exploded.csv create mode 100644 data/raw_data/Visits_Report-Live.csv create mode 100644 requirements.txt create mode 100644 setup.py create mode 100644 src/__init__.py create mode 100644 src/config.yml create mode 100644 src/dashboard.py create mode 100644 src/pipeline.sh create mode 100644 src/transform.ipynb create mode 100644 test/__init__.py create mode 100644 test/config.yml create mode 100644 test/config_grants.yml create mode 100644 test/lib_for_tests/__init__.py create mode 100644 test/lib_for_tests/grants_user_utils.py create mode 100644 test/lib_for_tests/press_user_utils.py create mode 100644 test/test_lib.py create mode 100644 test/test_pipeline.py create mode 100644 test_data/test_data_complete/processed_data/counts/counts.categories.csv create mode 100644 test_data/test_data_complete/processed_data/counts/counts.press_types.csv create mode 100644 test_data/test_data_complete/processed_data/counts/counts.research_topics.csv create mode 100644 test_data/test_data_complete/processed_data/press.csv create mode 100644 test_data/test_data_complete/processed_data/press.exploded.csv create mode 100644 test_data/test_data_complete/raw_data/News_Report_2023-07-25.csv create mode 100644 test_data/test_data_complete/raw_data/press_office.xlsx create mode 100644 test_data/test_data_mock_grants_and_proposals/raw_data/CIERA_awards_data 2023-08-11T18_03_26.505Z.csv create mode 100644 test_data/test_data_raw_only/raw_data/News_Report_2023-07-25.csv create mode 100644 test_data/test_data_raw_only/raw_data/press_office.xlsx create mode 100644 visit_dash_lib/__init__.py create mode 100644 visit_dash_lib/aggregator.py create mode 100644 visit_dash_lib/dash_builder.py create mode 100644 visit_dash_lib/data_handler.py create mode 100644 visit_dash_lib/data_viewer.py create mode 100644 visit_dash_lib/events-live-backup-with-notes.csv create mode 100644 visit_dash_lib/events-live-other.csv create mode 100644 visit_dash_lib/interface.py create mode 100644 visit_dash_lib/pages/__init__.py create mode 100644 visit_dash_lib/pages/base_page.py create mode 100644 visit_dash_lib/settings.py create mode 100644 visit_dash_lib/user_utils.py create mode 100644 visit_dash_lib/utils.py diff --git a/.github/workflows/installation_and_tests.yml b/.github/workflows/installation_and_tests.yml new file mode 100644 index 0000000..5c08b8a --- /dev/null +++ b/.github/workflows/installation_and_tests.yml @@ -0,0 +1,42 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Installation and Tests + +on: + push: + branches: ["main", "refactored"] + pull_request: + branches: ["main"] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [-f requirements.txt]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test the installation + run: | + pip install -e . + - name: Test with pytest + run: | + pytest --skip-nbconvert diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a7570d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,169 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +__pycache__ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +.DS_Store +.vscode/settings.json +test_data/processed/press.csv +test_data/processed/counts/counts.categories.csv +test_data/processed/counts/counts.press_types.csv +test_data/processed/counts/counts.research_topics.csv +*.code-workspace diff --git a/README.md b/README.md new file mode 100644 index 0000000..5555049 --- /dev/null +++ b/README.md @@ -0,0 +1,278 @@ +# CIERA Event Dashboard +Adapted from CIERA press/root dashboard by zhafen + + +[![Installation and Tests](https://github.com/CIERA-Northwestern/press-dash/actions/workflows/installation_and_tests.yml/badge.svg)](https://github.com/CIERA-Northwestern/press-dash/actions/workflows/installation_and_tests.yml) + +This dashboard provides a way for interested individuals to explore data regarding press and news related to CIERA. + +Instructions are provided below for various levels of usage. +Even if you have never edited code before, the goal of the instructions in [Level 2](#level-2-using-the-dashboard-on-your-computer) is for you to run the dashboard on your computer. +On the other end of things, if you are comfortable with routine use of git, code testing, etc., then jump to [Level 4](#level-4-significant-customization-and-editing) to get an overview of how the dashboard works and what you might want to edit. + +## Table of Contents + +- [Level 0: Using the Dashboard Online](#level-0-using-the-dashboard-online) +- [Level 1: Changing the Configuration and Data](#level-1-changing-the-configuration-and-data) +- [Level 2: Using the Dashboard on your Computer](#level-2-using-the-dashboard-on-your-computer) +- [Level 3: Making Some Edits to the Code](#level-3-making-some-edits-to-the-code) +- [Level 4: Significant Customization and Editing](#level-4-significant-customization-and-editing) +- [Level 5: Additional Features](#level-5-additional-features) + +## Level 0: Using the Dashboard Online + +The dashboard has a plethora of features that can be interacted with via a web interface. +If the dashboard is currently live at [ciera-event](https://press-dash-bqfxx6horkq6tr8zefbvnm.streamlit.app/), you can use the dashboard without any additional effort. +One of the main features is the application of filters and the ability to download the edited data and images. +While the interface should be relatively intuitive, a helpful tip is that you can reset your choices by refreshing the page. + +## Level 1: Updating the Configuration and Data + +When the dashboard is hosted on the web in some cases you can edit the configuration and data without ever needing to download anything and view the updated dashboard without ever needing to download anything. +This is possible for dashboards where the computations are sufficiently light to be wrapped into the interactive dashboard. + +### Editing the Config + +Some options are only available in the `config.yml` file found in the `src` directory (`./src/config.yml` if you are in the root directory, i.e. [here](https://github.com/CIERA-Northwestern/press-dash/blob/main/src/config.yml)). +You can edit this on github by clicking on the edit button in the upper right, provided you are logged in with an account that has the necessary permissions. +Locally this can be edited with TextEdit (mac), Notepad (Windows), or your favorite code editor. + +### Updating the Data + +The raw data lives in [the `data/raw_data` folder](https://github.com/CIERA-Northwestern/press-dash/tree/main/data/raw_data). +To update the data used, add and/or replace the data in this folder. +You can do this on github by clicking the "Add file" button in the upper right hand corner. +The pipeline will automatically select the most recent data. + +## Level 2: Using the Dashboard on your Computer + +If you need a private dashboard or you need to run more-intensive data processing you'll need to run the dashboard on your computer. + +### Downloading the Code + +The code lives in a git repository, but you don't have to know git to retrieve and use it. +The process for downloading the code is as follows: + +1. Click on the green "Code" button on [the GitHub repository](https://github.com/CIERA-Northwestern/press-dash), near the top of the page. +2. Select "Download ZIP." +3. Extract the downloaded ZIP file. +4. Optional: Move the extracted folder (`press-dash`; referred to as the code's "root directory") to a more-permanent location. + +### Installing the Dashboard + +Running the dashboard requires Python. +If you do not have Python on your computer it is recommended you download and install [Miniconda](https://docs.conda.io/en/main/miniconda.html). +Note that macs typically have a pre-existing Python installation, but this installation is not set up to install new packages easily, and the below instructions may not work. +Therefore it is still recommended that you install via miniconda even if your system has Python pre-installed. + +Open the directory containing the code (the root directory) in your terminal or command prompt. +If youre a mac user and you've never used a terminal or command prompt before +you can do this by right clicking the extracted folder and selecting "New Terminal at Folder" ([more info](https://support.apple.com/guide/terminal/open-new-terminal-windows-and-tabs-trmlb20c7888/mac); [Windows Terminal is the windows equivalent](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands)). + +Once inside the root directory and in a terminal, you can install the code by executing the command +``` +pip install -e . +``` + +### Running the Dashboard Locally + +Inside the root directory and in a terminal window, enter +``` +streamlit run src/dashboard.py +``` +This will open the dashboard in a tab in your default browser. +This does not require internet access. + +### Running the Data Pipeline + +To run the data-processing pipeline, while in the root directory run the following command in your terminal: +``` +./src/pipeline.sh ./src/config.yml +``` + +### Viewing the Logs + +Usage logs are automatically output to the `logs` directory. +You can open the notebooks as you would a normal Python notebook, if you are familiar with those. + +## Level 3: Making Some Edits to the Code + +### Downloading the Code (with git) + +A basic familiarity with git is highly recommended if you intend to edit the code yourself. +There are many good tutorials available (e.g. +[GitHub's "Git Handbook"](https://guides.github.com/introduction/git-handbook/), +[Atlassian Git Tutorial](https://www.atlassian.com/git/tutorials), +[Git - The Simple Guide](http://rogerdudler.github.io/git-guide/), +[Git Basics](https://git-scm.com/book/en/v2/Getting-Started-Git-Basics)). +For convenience, the main command you need to download the code with git is +``` +git clone git@github.com:CIERA-Northwestern/press-dash.git` +``` + +### If you edit anything, edit `_dash_lib/user_utils.py` + +This file contains two functions essential to working with arbitrary data: + +1. `load_data`, which the user must edit to ensure it loads the data into a DataFrame. +2. `preprocess_data`, which will make alterations to the loaded data. + +Just by changing these two functions and the config you can adapt the pipeline to a wide variety of purposes. + +### Editing the Pipeline + +If you want to change the more intensive data-processing, edit `src/transform.ipynb`. +The data-processing pipeline runs this notebook when you execute the bash script `./src/pipeline.sh`, +and saves the output in the logs. +It is recommended to use the config whenever possible for any new variables introduced. + +### Adding to the Pipeline + +You can add additional notebooks to the data-processing pipeline. +Just make the notebook, place it in the `src` dir, and add its name to the array at the top of `src/pipeline.sh`. + +### Editing the Streamlit Script + +The interactive dashboard is powered by [Streamlit](https://streamlit.io/), a Python library that enables easy interactive access. +Streamlit is built on a very simple idea---to make something interactive, just rerun the script every time the user makes a change. +This enables editing the streamlit script to be almost exactly like an ordinary Python script. +If you know how to make plots in Python, then you know how to make interactive plots with Streamlit. + +If you want to change the Streamlit dashboard, edit `src/dashboard.py`. +Much of the Streamlit functionality is also encapsulated in utility functions inside the `press_dash_lib/` directory, particularly in `press_dash_lib/streamlit_utils.py`. +Streamlit speeds up calculations by caching calls to functions. +If a particular combination of arguments has been passed to the function +(and the function is wrapped in the decorator `st.cache_data` or `st.cache_resource`) +then the results are stored in memory for easy access if the same arguments are passed again. + +## Level 4: Significant Customization and Editing + +Before making significant edits it is recommended you make your own fork of the dashboard repository, +and make your own edits as a branch. +This will enable you to share your edits as a pull request. + +### Repository Structure +The repository is structured as follows: +``` +press-dash/ +│ +├── README.md # Documentation for the project +├── __init__.py +├── src # Source code directory +│   ├── __init__.py +| ├── config.yml # Configuration file for the dashboard +│   ├── dashboard.py # Script for interactive dashboard +│   ├── pipeline.sh # Shell script for running data pipeline +│   └── transform.ipynb # Jupyter notebook for data transformation +├── root_dash_lib # Custom library directory +│   ├── __init__.py +│   ├── user_utils.py # Utilities specific to the dashboard. Must be edited. +│   ├── dash_utils.py # Utilities for creating widgets and accepting input. +│   ├── data_utils.py # Utilities for general-purpose data handling +│   ├── plot_utils.py # Utilities for plotting data. +│   ├── time_series_utils.py # Utilities for working with time series. +│   └── pages # Dashboard page templates. +│      ├── __init__.py +│      ├── base_page.py # The default dashboard setup. High flexibility. +│      └── panels_page.py # A multi-panel dashboard example. +├── setup.py # Script for packaging the project +├── requirements.txt # List of project dependencies +├── data # Data storage directory +│   ├── raw_data # Raw data directory +│   └── processed_data # Processed data directory +├── test # Test directory +│   ├── __init__.py +| ├── config.yml # Configuration file for the tests. +│   ├── test_pipeline.py # Unit tests for data pipeline +│   ├── test_streamlit.py # Unit tests for the dashboard +│   └── lib_for_tests # Used to load the default test dataset, +│      ├── __init__.py # enabling users to change the code and check +│      └── press_data_utils.py # if their changes broke any functionality. +├── conftest.py # Configuration for test suite +└── test_data # Test datasets +``` + +### The Test Suite + +The dashboard comes with a suite of code tests that help ensure base functionality. +It is recommended you run these tests both before and after editing the code. +To run the tests, simply navigate to the code's root directory and enter +``` +pytest +``` + +### Updating the Usage and Installation Instructions + +If your edits include new packages, you need to add them to both `requirements.txt` and `setup.py`. +You may also consider changing the metadata in `setup.py`. + +### Deploying on the Web +You can deploy your app on the web using Streamlit sharing. +Visit [Streamlit Sharing](https://streamlit.io/sharing) for more information. + +**Note:** you cannot deploy a streamlit app where the source is a repository owned by the organization, unless you can log into that organization's github account. +This is true even if you have full read/write access to the organization's repositories. +Instead you must create a fork of the repository you want to deploy, and point streamlit.io to that fork. + +## Level 5: Additional Features + +### Using and Editing Multiple Dashboards + +It is recommended that your repositories that use this dashboard template are a fork of the template. +Unfortunately you cannot have multiple official forks of a single repository, nor can you have a private fork, which is necessary for dashboards with sensitive data. +However, you can create a "manual" fork in both cases, as described below. + +1. **Create a New Repository**: In your GitHub/Atlassian account, create a new repository. The repository can be set to "Private" if you wish. + +2. **Clone the Original Repository**: Clone the public repository to your local machine and navigate to the cloned repository directory. + + ```bash + git clone https://github.com/zhafen/root-dash.git + cd your-public-repo + ``` + +3. **Change the setup for the remote repositories**: Designate the repository you cloned from as `upstream`, and create a new origin with the url of your private repository. + + ```bash + git remote rename origin upstream + git remote add origin https://github.com//.git + ``` + +4. **Check the result**: If done correctly, the output of `git remote -v` should be + + ```bash + git remote -v + ``` + + > ``` + > origin git@github.com:.git (fetch) + > origin git@github.com:.git (push) + > upstream git@github.com:zhafen/root-dash.git (fetch) + > upstream git@github.com:zhafen/root-dash.git (push) + > ``` + +4. **Push to the Private Repository**: Push all branches and tags to your new private repository: + + ```bash + git push origin --all + git push origin --tags + ``` + +### Continuous Integration + +Continuous integration (automated testing) is an excellent way to check if your dashboard is likely to function for other users. +You can enable continuous integration [via GitHub Actions](https://docs.github.com/en/actions/automating-builds-and-tests/about-continuous-integration) (also available in a tab at the top of your github repo), including adding a badge showing the status of your tests +(shown at the top of this page). +Some tests don't work on continuous integration, +and are disabled until the underlying issues are addressed. +Continuous integration can be tested locally using [act](https://github.com/nektos/act), +which may be helpful if the issues that occur during continuous integration are system specific. + +### Deploying a Private App +Streamlit has the option to deploy your code without sharing it publicly. +More information can be found [in this section of the Streamlit Sharing documentation](https://docs.streamlit.io/streamlit-community-cloud/share-your-app#make-your-app-public-or-private). + + +--- + +ChatGPT was used in the construction of this document. diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/conftest.py b/conftest.py new file mode 100644 index 0000000..8404c57 --- /dev/null +++ b/conftest.py @@ -0,0 +1,18 @@ +import pytest + +def pytest_addoption(parser): + parser.addoption( + "--skip-nbconvert", action="store_true", default=False, help="skip nbconvert tests" + ) + +def pytest_configure(config): + config.addinivalue_line("markers", "nbconvert: mark as employing nbconvert") + +def pytest_collection_modifyitems(config, items): + if config.getoption("--skip-nbconvert"): + skip_nbconvert = pytest.mark.skip(reason="will not run if marked") + for item in items: + if "nbconvert" in item.keywords: + item.add_marker(skip_nbconvert) + else: + return diff --git a/data/processed_data/counts/counts.categories.csv b/data/processed_data/counts/counts.categories.csv new file mode 100644 index 0000000..352a38c --- /dev/null +++ b/data/processed_data/counts/counts.categories.csv @@ -0,0 +1,11 @@ +Year,Achievement,Data Science & Computing,Education,Event,Interdisciplinary,Outreach,Science,Uncategorized +2013,16,1,8,13,6,11,9,1 +2014,23,2,14,20,9,12,17,0 +2015,19,7,30,43,14,24,10,0 +2016,37,7,12,23,20,15,8,0 +2017,27,4,8,19,13,12,16,0 +2018,27,8,13,23,22,19,26,0 +2019,20,7,10,10,8,8,23,4 +2020,17,4,3,4,5,5,18,2 +2021,18,2,7,7,3,9,23,0 +2022,18,7,12,21,18,14,16,0 diff --git a/data/processed_data/counts/counts.press_types.csv b/data/processed_data/counts/counts.press_types.csv new file mode 100644 index 0000000..40f3c22 --- /dev/null +++ b/data/processed_data/counts/counts.press_types.csv @@ -0,0 +1,11 @@ +Year,CIERA Stories,External Press,Northwestern Press +2013,27,10,1 +2014,44,9,10 +2015,59,11,13 +2016,48,16,16 +2017,36,17,13 +2018,43,31,12 +2019,33,13,16 +2020,24,10,15 +2021,26,9,18 +2022,38,15,17 diff --git a/data/processed_data/counts/counts.research_topics.csv b/data/processed_data/counts/counts.research_topics.csv new file mode 100644 index 0000000..b100b90 --- /dev/null +++ b/data/processed_data/counts/counts.research_topics.csv @@ -0,0 +1,11 @@ +Year,Black Holes & Dead Stars,Exoplanets & The Solar System,Galaxies & Cosmology,Gravitational Waves & Multi-Messenger Astronomy,Life & Death of Stars,Stellar Dynamics & Stellar Populations +2013,4,1,1,3,0,0 +2014,3,8,4,0,3,0 +2015,2,5,3,13,3,5 +2016,10,12,8,17,11,4 +2017,14,2,8,16,6,8 +2018,8,3,5,20,6,5 +2019,11,4,9,13,13,4 +2020,14,6,8,14,13,6 +2021,18,5,10,14,21,6 +2022,17,14,11,27,17,10 diff --git a/data/processed_data/press.csv b/data/processed_data/press.csv new file mode 100644 index 0000000..cf94d38 --- /dev/null +++ b/data/processed_data/press.csv @@ -0,0 +1,955 @@ +id,Title,Date,Permalink,Research Topics,Press Types,Categories,Year,Press Mentions,People Reached,Top Outlets,Notes +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",2018-07-26,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2017,27,147565,, +437,12th International LISA Symposium Held in Chicago by CIERA & AAS,2018-07-13,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,11,3362346,"• WTTW, Sept. 12, 2022", +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,External Press,Science,2017,32,14866021,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Event|Interdisciplinary|Outreach,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Event|Interdisciplinary|Outreach,2015,71,928915,, +1286,CIERA Sponsors Meeting of Gravitational Wave International Committee,2018-07-08,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",2018-06-29,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,23,1324205,Cosmos Magazine, +1289,Experts Gather to Discuss the Circumgalactic Medium,2018-08-04,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,Galaxies & Cosmology,CIERA Stories,Event,2017,8,1424054,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Achievement|Education,2017,18,2327189,, +1295,Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson,2017-09-01,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,CIERA Stories,Achievement,2016,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Event|Interdisciplinary|Outreach,2017,,,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Achievement|Data Science & Computing,2017,11,292594,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,37,25093,"• Space Daily, Aug. 15, 2022", +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Outreach,2017,0,,Cosmos Magazine, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,11,25730,ANI, +1324,Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting,2017-09-01,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2017,73,1435743,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2017,,,, +1347,Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran,2017-09-18,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,Life & Death of Stars,External Press,Science,2017,,,, +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,CIERA Stories|External Press,Achievement,2017,82,425818,"ABC7, WBEZ", +1352,CIERA Researchers Contribute to Record-setting Gravitational Wave Detection,2017-09-27,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,52,1032411,ANI, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars|Exoplanets & The Solar System|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Interdisciplinary,2017,,,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,External Press|Northwestern Press,Achievement,2017,23,285679,, +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Achievement|Education,2017,40,4928507,,Included local evening news feature +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1370,CIERA’s Shane Larson Joins U.S. NASA LISA Study Team,2017-10-15,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories|Northwestern Press,Event|Outreach,2017,,,, +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Achievement|Education,2017,7,144518,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",As of 2023-05-09 +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Achievement|Interdisciplinary,2017,67,570333,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,Northwestern Press,Achievement|Interdisciplinary|Outreach,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2017,2,42657,, +1390,REU Student José Flores Velazquez Presents Research on Capitol Hill,2018-04-20,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,30,10955637,"ABC7, WBEZ", +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Education|Event|Interdisciplinary,2017,0,,,Included local evening news feature +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Achievement|Science,2017,0,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Achievement|Event,2017,,,, +1399,Embassy of Greece Interviews CIERA Director Vicky Kalogera,2018-03-27,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,External Press,Achievement,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2017,,,, +1411,Top Telescope Access for CIERA Researchers,2017-11-01,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,CIERA Stories,Science,2017,59,663449,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Event|Interdisciplinary|Outreach,2017,43,341668,ANI, +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Event|Outreach,2017,54,46130051,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,External Press|Northwestern Press,Achievement,2017,24,1682561,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +1438,CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,CIERA Stories,Achievement,2017,29,432179,"• Space Daily, Aug. 15, 2022", +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Achievement|Education|Event|Interdisciplinary,2017,0,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Science,2017,,,, +1452,CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics,2018-01-10,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,Northwestern Press,Achievement,2017,,,, +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2017,76,2700451,ANI,Included local evening news feature +1456,Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos,2018-01-09,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,Life & Death of Stars,External Press,Science,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2017,0,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars|Life & Death of Stars,External Press|Northwestern Press,Science,2017,69,2290110,ANI, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,9,1589517,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Achievement|Outreach,2017,,,, +1493,Another Way for Stellar-mass Black Holes to Grow Larger,2018-08-17,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,Black Holes & Dead Stars,External Press,Science,2017,58,501709,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022",Included local evening news feature +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Event|Outreach,2018,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1613,CIERA REU Panel Discussion Explores Careers in Astrophysics,2018-08-06,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,CIERA Stories,Education,2017,0,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement|Event|Interdisciplinary|Outreach,2017,14,294203,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary,2017,60,7955388,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +1668,Astronomers Witness Birth of New Star from Stellar Explosion,2018-09-20,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,Life & Death of Stars,External Press,Science,2018,,,, +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Achievement|Science,2017,19,3929413,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",2018-09-01,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,CIERA Stories,Achievement,2017,0,,, +1698,CIERA Researchers Featured in “Humans of LIGO”,2018-09-20,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2018,43,1703499,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Event|Outreach,2018,,,, +1928,CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,CIERA Stories,Achievement,2016,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories|External Press,Event|Interdisciplinary|Outreach,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Achievement|Event|Outreach,2018,62,235331,, +1940,CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,27,1556154,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Event|Outreach,2018,75,144143,Cosmos Magazine, +1950,New Issue of “LIGO Magazine” Available,2017-08-31,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories|External Press|Northwestern Press,Event|Outreach,2016,,,, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Event|Outreach,2016,65,237466,ANI, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement|Education|Event|Interdisciplinary|Outreach,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Education|Event,2016,57,4505139,MSN, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Education|Interdisciplinary,2016,0,,MSN, +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,External Press|Northwestern Press,Science,2016,54,9258,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,External Press|Northwestern Press,Science,2016,,,, +2088,The Computing Power Behind CIERA’s Galaxy Formation Research,2017-07-20,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,11,155243,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Event|Outreach,2016,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +2111,CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine,2018-11-02,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,Life & Death of Stars,External Press,Science,2018,22,2493,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +2199,CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video,2017-06-12,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,Northwestern Press,Achievement,2016,27,5209876,ANI, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Black Holes & Dead Stars|Exoplanets & The Solar System|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,35,20766778,"ABC7, WBEZ", +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2016,,,, +2210,Astronomy Students Awarded Best Senior Thesis,2017-05-30,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Event|Interdisciplinary|Outreach,2016,29,716569,"CNET, Sky and Telescope", +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Achievement|Interdisciplinary,2016,36,254483,MSN, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2016,28,2360703,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories|External Press|Northwestern Press,Event|Interdisciplinary|Outreach,2016,76,590534,Cosmos Magazine, +2321,Chicago Woman Magazine Features CIERA Director Prof. Kalogera,2017-05-06,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,External Press,Achievement,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2016,,,, +2337,CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence,2017-05-01,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Achievement|Data Science & Computing|Event|Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2340,Prof. Faucher-Giguère Receives NSF Honor for Young Faculty,2017-04-29,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,105,17832,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2343,Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space,2017-04-27,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,CIERA Stories,Achievement,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2016,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2018,47,6978142,"CNET, Sky and Telescope",Included local evening news feature +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Data Science & Computing|Interdisciplinary|Outreach,2016,,,, +2439,CIERA Pilot Program Exposes Students to Astronomy Research,2017-03-13,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,CIERA Stories,Education,2016,59,686717,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +2442,CIERA Professor Giles Novak Joins ALMA Science Advisory Committee,2017-03-12,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,CIERA Stories,Achievement,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2016,,,, +2451,Media Seek Expertise on New Planets in TRAPPIST-1 System,2017-02-28,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,Exoplanets & The Solar System,External Press,Outreach,2016,26,60800,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Education|Event,2016,105,1129083,ANI, +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",2017-01-31,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,Life & Death of Stars,External Press,Science,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2523,Supernova News from CIERA Professor Raffaella Margutti,2017-01-29,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,Life & Death of Stars,External Press,Science,2016,10,3351402,MSN, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement|Education|Interdisciplinary,2016,,,, +2536,CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229,2017-01-27,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,CIERA Stories,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories|External Press,Achievement|Interdisciplinary,2016,24,92320598,"• Space Daily, Aug. 15, 2022", +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2016,,,, +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Achievement|Outreach,2018,57,369192,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Outreach,2018,,,, +2768,Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest,2016-12-31,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,97,31732846,"CNET, Sky and Telescope",As of 2023-05-09 +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,External Press|Northwestern Press,Achievement,2018,92,539707,"CNET, Sky and Telescope", +2819,Year-in-Review Honors for the LIGO Scientific Collaboration,2016-12-30,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Event|Outreach,2016,,,, +2828,Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni,2016-12-28,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,35,147615,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +2829,Postdocs & Graduate Students Present at Annual CIERA Research Jamboree,2016-12-15,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,CIERA Stories,Event,2016,45,327780,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2018,0,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Event|Interdisciplinary,2016,,,, +2995,Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio,2016-11-30,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,Northwestern Press,Achievement,2016,62,11834070,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +2996,Graduate Student Matthew Rickert Wins Reber Fellowship,2016-11-29,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2016,34,2544119,"• WTTW, Sept. 12, 2022",Included local evening news feature +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Interdisciplinary|Science,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Achievement|Education,2016,34,430222,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,External Press,Achievement|Science,2016,50,6868815,ANI,As of 2023-05-09 +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Achievement|Education|Event,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Achievement|Education|Interdisciplinary,2016,30,669738,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3007,CIERA’s Board of Visitors Meets with Top University Officials,2016-10-30,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,CIERA Stories,Event,2016,0,,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories|Northwestern Press,Event|Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Data Science & Computing|Interdisciplinary|Outreach,2016,,,, +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Achievement|Interdisciplinary,2016,86,305070,"• Space Daily, Aug. 15, 2022", +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Achievement|Education,2016,,,, +3065,Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics,2016-09-30,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,CIERA Stories,Achievement,2016,48,37849,ANI, +3208,CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship,2016-09-27,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2016,,,, +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2016,74,239396,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +3224,CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,2016-09-02,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,CIERA Stories,Event,2016,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Achievement|Interdisciplinary,2018,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,CIERA Stories|Northwestern Press,Achievement,2015,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Achievement|Data Science & Computing|Science,2018,4,402189,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories|External Press,Achievement|Education|Interdisciplinary|Outreach,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars|Life & Death of Stars,External Press|Northwestern Press,Science,2018,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Science,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Education|Event|Interdisciplinary,2015,46,163108,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3308,CIERA's 2016 Summer Student Researchers,2016-08-28,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary|Outreach,2015,,,, +3314,Physics and Astronomy Department Rising in Impact and Visibility,2016-07-30,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,Northwestern Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Outreach|Science,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Achievement|Education|Interdisciplinary,2015,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing|Education|Event|Outreach,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Education|Event|Outreach,2015,60,1954663,Cosmos Magazine, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,CIERA Stories|Northwestern Press,Data Science & Computing,2015,102,173724,ANI, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Event|Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,CIERA Stories|Northwestern Press,Achievement,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Education|Event|Outreach,2015,101,150302183,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Education|Event,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Achievement|Science,2015,39,5280011,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Achievement|Science,2018,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories|External Press,Event|Outreach,2015,0,,ANI, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Event|Interdisciplinary|Outreach,2015,,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Event|Interdisciplinary,2018,0,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Event|Outreach,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Education|Outreach,2018,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Data Science & Computing|Education|Event|Outreach,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Education|Event|Outreach,2015,58,7865231,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Education|Event|Interdisciplinary,2015,71,37375784,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Education|Event|Outreach,2015,36,282852,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",2016-05-01,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Data Science & Computing|Interdisciplinary|Science,2018,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,CIERA Stories|Northwestern Press,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories|Northwestern Press,Data Science & Computing|Event|Interdisciplinary,2015,43,124270,"• WTTW, Sept. 12, 2022", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Achievement|Education|Event,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2015,,,, +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2015,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",2016-03-31,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,External Press,Achievement,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event,2015,,,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Event|Outreach,2015,33,974324,, +3556,The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology,2016-02-28,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,CIERA Stories,Event,2015,,,, +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2015,27,1981387,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2015,31,488149,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Education|Event|Outreach,2015,35,3162614,"CNET, Sky and Telescope", +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2015,,,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Achievement|Event,2015,66,379213,, +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2015,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",Included local evening news feature +3614,New Monthly Night at Dearborn Observatory with CIERA Astronomers,2016-01-27,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,CIERA Stories,Event,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories|External Press,Education|Outreach|Science,2015,55,112419,MSN, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Achievement|Education|Outreach,2015,32,1055,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Achievement|Data Science & Computing|Education,2015,,,, +3624,AAAS Fellow Jeremy Ward Visits CIERA,2015-12-06,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,CIERA Stories,Event,2015,52,5465989,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,External Press|Northwestern Press,Achievement,2018,58,5216617,, +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary|Science,2018,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3637,Professors Novak & Sageman Named to 2015 Faculty Honor Roll,2015-11-30,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,CIERA Stories,Achievement,2015,3,5864267,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event|Outreach,2015,45,591014,ANI, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education|Event,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Achievement|Interdisciplinary,2015,,,, +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary,2015,51,53531,"• WTTW, Sept. 12, 2022", +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Education|Event|Outreach,2015,36,421322,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3661,CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold,2015-11-10,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,CIERA Stories,Event,2015,27,3515718,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Education|Event|Outreach,2015,,,, +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Exoplanets & The Solar System|Life & Death of Stars,External Press,Achievement,2018,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3724,CIERA Professor Wen-Fai Fong Interviewed by Science News,2019-02-25,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3732,CIERA Director Elected to LSSTC ExecBoard,2015-11-01,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,CIERA Stories,Achievement,2015,68,15163,"ABC7, WBEZ", +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Education|Event,2015,,,, +3737,Dearborn Observatory Featured in Open House Chicago 2015,2015-10-25,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,External Press,Event,2015,29,3655438,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Achievement,2015,0,,ANI, +3741,CIERA’s Shane Larson Elected APS Fellow,2015-10-15,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,CIERA Stories,Achievement,2015,0,,ANI,Included local evening news feature +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event,2015,39,61424,"• Space Daily, Aug. 15, 2022", +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Education|Event|Outreach,2015,110,26097676,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3757,CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics,2015-11-22,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Education|Event|Outreach,2015,21,28836382,"ABC7, WBEZ",Included local evening news feature +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Education|Event,2015,,,, +3784,CIERA's 2015 Summer Student Researchers,2015-08-31,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,CIERA Stories,Education,2014,,,, +3787,CIERA Director Vicky Kalogera Speaks to Office for Research Staff,2015-08-30,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,CIERA Stories,Event,2014,11,6052567,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories|External Press|Northwestern Press,Science,2014,60,25918923,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3793,Immediate Opening for Graduate Student: CIERA Keck Foundation Grant,2015-07-27,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +3795,CIERA Undergraduate Researcher Accepted to Ph.D. Programs,2015-07-22,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,CIERA Stories,Achievement,2014,5,7488271,"ABC7, WBEZ", +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories|External Press,Achievement|Science,2014,26,1161643,"CNET, Sky and Telescope", +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Education|Event,2014,59,446404,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories|External Press,Achievement|Science,2014,63,93486,"CNET, Sky and Telescope", +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Education|Event|Outreach,2014,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",2019-02-27,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,External Press,Achievement,2018,48,38521944,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Education|Interdisciplinary|Outreach,2018,23,459301,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press|Northwestern Press,Data Science & Computing|Education|Interdisciplinary|Science,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary|Outreach,2018,,,, +3843,Eight New Postdoctoral Researchers Join CIERA,2019-04-01,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,CIERA Stories,Achievement,2018,,,, +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,98,2021711,"ABC7, WBEZ", +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories|External Press,Data Science & Computing|Interdisciplinary|Outreach|Science,2018,26,385291,Cosmos Magazine, +3868,CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves,2019-04-01,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Event|Outreach,2018,117,64222,MSN, +3872,Professor Margutti’s Paper Among Top Ten in 2018,2019-04-03,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,56,15043971,"ABC7, WBEZ", +3881,Illinois Congressman Visits CIERA,2015-06-27,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,CIERA Stories,Outreach,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Education|Event|Outreach,2014,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3885,NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden,2015-06-10,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Achievement|Science,2014,23,5434721,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Achievement|Interdisciplinary|Science,2014,34,126557,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Education|Event,2014,0,,MSN, +3931,CIERA Fellow Geller Wins First Prize in Data Visualization Challenge,2015-04-29,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,Life & Death of Stars,CIERA Stories,Achievement,2014,84,342230122,"ABC7, WBEZ", +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,59,752947,ANI,As of 2023-05-09 +3939,CIERA Faculty Comment on World’s First Image of a Black Hole,2019-04-16,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2018,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories|Northwestern Press,Event|Interdisciplinary|Science,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Achievement|Science,2014,,,, +3945,Two NSF Graduate Fellowships Awarded to NU Astronomy Students,2015-04-18,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,15,247140,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories|External Press,Achievement|Data Science & Computing|Interdisciplinary,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Achievement|Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Education|Event,2018,,,, +3964,CIERA’s Paul Williams on Studying Star Formation in Antarctica,2019-04-19,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,Galaxies & Cosmology,CIERA Stories,Science,2018,21,40589589,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories|Northwestern Press,Achievement|Event|Outreach,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3974,CIERA to Welcome Four New Postdocs in Fall 2015,2015-03-19,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,CIERA Stories,Achievement,2014,56,12943827,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3976,Summer Undergraduate Student Success Stories: CIERA Alumni,2015-03-01,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,CIERA Stories,Education,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Achievement|Data Science & Computing|Interdisciplinary|Science,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,CIERA Stories|External Press,Science,2014,,,, +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",2015-02-20,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",Included local evening news feature +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,CIERA Stories|External Press|Northwestern Press,Science,2014,0,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Achievement|Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Education|Event|Outreach,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories|External Press,Achievement|Event|Science,2014,50,11267804,, +4028,Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks,2014-12-15,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,Galaxies & Cosmology,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2014,,,, +4040,A New Infrared Camera for Exoplanet Imaging,2019-04-29,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,Exoplanets & The Solar System,CIERA Stories,Science,2018,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories|Northwestern Press,Achievement|Outreach|Science,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories|Northwestern Press,Achievement|Education|Event|Outreach,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Event|Interdisciplinary|Science,2014,27,19438863,ANI, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories|External Press|Northwestern Press,Education|Event|Outreach|Science,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories|External Press,Achievement|Education|Event,2014,,,, +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Achievement|Interdisciplinary,2014,5,597107,,As of 2023-05-09 +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology|Life & Death of Stars,CIERA Stories|Northwestern Press,Achievement|Interdisciplinary|Science,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories|Northwestern Press,Education|Event|Outreach,2014,,,, +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Achievement|Science,2014,10,27432795,MSN,Included local evening news feature +4082,Professor Meyer Named to 2014 Faculty Honor Roll,2014-09-09,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,CIERA Stories,Achievement,2014,61,7199589,"CNET, Sky and Telescope", +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2013,50,733225,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Event|Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories|External Press,Achievement|Science,2013,,,, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Education|Outreach,2013,30,62401,MSN, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Education|Event|Science,2013,,,, +4096,LIGO on Lookout for 8 Sources of Gravitational Waves,2019-05-06,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,43,4152294,ANI, +4100,First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole,2019-05-02,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4127,The Science that Shared Buzz Aldrin’s Space Selfie,2014-07-27,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,External Press,Science,2013,,,, +4129,CIERA Director Elected Trustee of Aspen Center for Physics,2014-07-15,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,CIERA Stories,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories|External Press,Achievement|Event|Outreach|Science,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Achievement|Education|Interdisciplinary,2013,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories|External Press,Achievement|Science,2013,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2018,43,1190024,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories|External Press,Achievement|Interdisciplinary,2013,93,1871562,MSN, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2013,43,2495034,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Achievement|Education|Outreach,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Education|Event|Outreach,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Achievement|Event|Outreach,2013,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Achievement|Interdisciplinary,2018,10,3535501,, +4172,What Next for Gravitational Wave Detection?,2019-06-04,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2018,,,, +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Achievement|Interdisciplinary,2013,70,157901,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories|External Press,Education|Event|Science,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories|External Press,Achievement|Education|Event|Interdisciplinary|Outreach,2013,0,,, +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Event|Interdisciplinary,2018,72,4578440,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",2019-06-19,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4234,Fred Rasio Receives 2019 Brouwer Award,2019-06-20,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,Northwestern Press,Achievement,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Event|Science,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2018,0,,"• WTTW, Sept. 12, 2022", +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Event|Interdisciplinary,2018,25,1753596,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Event|Interdisciplinary,2018,101,10780049,"• WTTW, Sept. 12, 2022", +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Achievement|Education,2018,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4280,Aprajita Hajela Wins NASA Future Investigator Award,2019-07-10,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,0,,"• Space Daily, Aug. 15, 2022", +4283,Northwestern Leads Effort to Detect New Types of Cosmic Events,2019-07-17,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press,Science,2018,,,, +4328,SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space,2019-08-15,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2018,0,,"• Space Daily, Aug. 15, 2022", +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,19,9017092,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Event|Outreach,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Education|Event|Outreach,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2018,29,7363982,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Outreach|Science,2018,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4406,Announcing CIERA’s 2019 Summer Undergraduate Researchers,2019-06-01,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,CIERA Stories,Education,2018,4,8814416,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars|Galaxies & Cosmology,External Press|Northwestern Press,Science,2019,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Education|Event|Outreach,2018,28,34486354,"• WTTW, Sept. 12, 2022",Included local evening news feature +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Education|Event|Outreach,2013,18,2679870,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2013,30,58891323,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories|Northwestern Press,Achievement|Outreach,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Achievement|Outreach,2013,,,, +4471,Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship,2014-05-01,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,CIERA Stories,Achievement,2013,33,19439557,MSN, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Event|Interdisciplinary,2013,,,, +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Achievement|Event,2013,33,427202,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Uncategorized,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Event|Outreach,2013,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2019,90,90004630,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4531,"""A star has been flickering for years – and researchers think they've figured out why""",2019-10-31,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,Life & Death of Stars,External Press,Science,2019,,,, +4534,CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS,2019-11-01,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,Northwestern Press,Achievement,2019,,,, +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,External Press|Northwestern Press,Science,2019,34,5282289,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Achievement|Education,2018,0,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2019,82,45834,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4591,CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,CIERA Stories,Achievement,2018,66,17171489,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Education|Event|Outreach,2019,65,275112,, +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Event|Outreach,2019,51,16380813,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Event|Outreach,2019,,,, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2013,4,2941748,MSN, +4636,CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows,2019-11-26,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,Northwestern Press,Achievement,2019,93,3946937,ANI, +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2019,23,493693,"• Space Daily, Aug. 15, 2022", +4650,An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light,2019-12-09,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4656,First Discoveries by the Young Supernova Experiment,2019-12-08,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,Life & Death of Stars,External Press,Science,2019,,,, +4658,Faucher-Giguère Named Highly Cited Researcher,2019-12-02,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,Northwestern Press,Achievement,2019,,,, +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,CIERA Stories|External Press,Science,2019,13,45920686,"• WTTW, Sept. 12, 2022", +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Achievement|Science,2019,6,248739,"ABC7, WBEZ", +4713,This Exoplanet is in a Death Dance with its Star,2020-01-13,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,Exoplanets & The Solar System,External Press,Science,2019,34,947624,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4762,CIERA Postdocs Advance to New Positions,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,CIERA Stories,Achievement,2018,,,, +4763,Using Gravitational Waves to See Inside Stars,2019-12-09,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,58,68149974,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",As of 2023-05-09 +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Outreach,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2019,27,2670008,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Science,2019,23,1540864,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Data Science & Computing|Event|Outreach,2019,,,, +4833,Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows,2020-02-25,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,External Press,Achievement,2019,,,, +4855,Coronavirus/COVID-19 Update,2020-03-13,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,CIERA Stories,Uncategorized,2019,0,,"• WTTW, Sept. 12, 2022", +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Data Science & Computing|Education|Event,2019,,,, +4870,Coronavirus/COVID-19 Update,2020-03-25,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,CIERA Stories,Uncategorized,2019,87,17075995,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4875,Seven New Postdoctoral Researchers Join CIERA,2020-04-01,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,CIERA Stories,Achievement,2019,37,494873,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Achievement|Data Science & Computing|Science,2019,83,472221,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Interdisciplinary|Outreach,2019,,,, +4888,Prof. Margutti Receives NSF Honor for Junior Faculty,2020-03-26,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,Northwestern Press,Achievement,2019,,,, +4889,A Supernova that Outshines All Others,2020-04-13,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,Life & Death of Stars,External Press,Science,2019,0,,"• WTTW, Sept. 12, 2022", +4899,Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy,2020-04-20,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,0,,, +4901,NASA Hubble Fellowship Awarded to Michael Zevin,2020-04-21,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,CIERA Stories,Achievement,2019,62,660595,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",2020-04-21,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,CIERA Stories,Uncategorized,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2019,76,510547,"ABC7, WBEZ", +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press,Achievement,2019,,,, +4921,Using Gravitational Waves to Approximate Pi,2020-05-19,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4924,Astrophysicists Capture New Class of Transient Objects,2020-05-26,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Achievement|Education,2019,0,,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4937,Undergraduate Andrew Bowen Receives AAS Chambliss Award,2020-05-07,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,1,46271267,,Included local evening news feature +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Education|Outreach,2019,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4944,Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM,2020-06-01,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,CIERA Stories,Achievement,2019,35,2439111,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4948,Black Lives Matter,2020-06-06,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,CIERA Stories,Uncategorized,2019,,,, +4964,New Mystery Merger Detected by LIGO-Virgo,2020-06-23,https://ciera.northwestern.edu/2020/06/23/gw190814/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,55,874900,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4977,CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize,2020-06-18,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,CIERA Stories,Achievement,2019,32,48816638,,As of 2023-05-09 +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Black Holes & Dead Stars|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,30,14892,Cosmos Magazine, +4982,Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award,2020-06-19,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4998,Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected,2020-07-14,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5003,Spectacular ultraviolet flash may finally explain how white dwarfs explode,2020-07-23,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5016,Calcium-rich supernova examined with X-rays for first time,2020-08-05,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2019,73,1620240,"ABC7, WBEZ",Included local evening news feature +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Achievement|Education,2019,,,, +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,0,,"CNET, Sky and Telescope", +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,48,44389896,ANI, +5078,CIERA Postdocs Move on to New Positions,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,CIERA Stories,Achievement,2020,,,, +5094,Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists,2020-09-08,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,Galaxies & Cosmology,CIERA Stories,Science,2020,0,,MSN, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2020,58,5076976,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Education|Outreach,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Education|Interdisciplinary,2019,,,, +5382,Update on Initiative for Social Justice,2020-10-01,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,CIERA Stories,Uncategorized,2020,,,, +5446,The Low Spin of the Milky Way's Supermassive Black Hole,2020-10-20,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,32,2340609,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +5454,Star 'Spaghettified' by a Supermassive Black Hole,2020-10-12,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5523,Black hole ‘family portrait’ is most detailed to date,2020-10-29,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5526,Statement of Principles and Values,2020-10-28,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,CIERA Stories,Uncategorized,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Event|Outreach,2020,,,, +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2020,,,, +5624,André de Gouvêa Selected as 2020 AAAS Fellow,2020-11-30,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,CIERA Stories,Achievement,2020,,,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement|Data Science & Computing,2020,8,71781425,, +5678,Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago,2020-12-14,https://ciera.northwestern.edu/2020/12/14/christmas-star/,Exoplanets & The Solar System,External Press,Outreach,2020,16,721099,, +5726,Faucher-Giguère Named Highly Cited Researcher for Second Year,2020-12-21,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,Galaxies & Cosmology,External Press,Achievement,2020,,,, +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary|Science,2020,4,107523172,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5759,2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi,2020-10-25,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5761,String of Stars in Milky Way are Related,2021-01-15,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2020,38,687958134,, +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,35,212745,"• Space Daily, Aug. 15, 2022", +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars|Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Event|Outreach,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5842,Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos,2021-02-18,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5863,Major Award for Gravitational Wave Researcher Christopher Berry,2021-03-15,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Black Holes & Dead Stars|Life & Death of Stars,External Press,Science,2020,79,24396908,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +5904,Prof. Fong Receives NSF Honor for Young Faculty,2021-03-24,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,Life & Death of Stars,Northwestern Press,Achievement,2020,21,150423863,ANI, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Outreach,2020,67,80414,, +5920,200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics,2021-04-02,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2020,7,9559462,MSN,Included local evening news feature +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Achievement,2020,5,86988,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Achievement|Education,2020,107,865975,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5979,Vicky Kalogera Elected to American Academy of Arts and Sciences,2021-04-23,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,,,, +6008,Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs,2021-04-28,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,Life & Death of Stars,CIERA Stories,Science,2020,0,,"• WTTW, Sept. 12, 2022", +6010,American Physical Society Elects Professors Margutti and Larson to Committees,2021-04-17,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,CIERA Stories,Achievement,2020,,,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2020,61,13512,, +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,External Press|Northwestern Press,Science,2020,3,714265,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Education|Interdisciplinary|Outreach,2020,20,1507388,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology|Life & Death of Stars,External Press|Northwestern Press,Data Science & Computing|Science,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,External Press|Northwestern Press,Science,2020,0,,"• WTTW, Sept. 12, 2022", +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2020,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Data Science & Computing|Interdisciplinary,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Data Science & Computing|Science,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Achievement|Interdisciplinary,2020,,,, +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,45,3595973,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Education|Interdisciplinary,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Education|Outreach,2021,,,, +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Achievement,2021,42,3261104,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,69,11167057,MSN, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2021,65,432560655,"ABC7, WBEZ", +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2021,0,,"ABC7, WBEZ",Included local evening news feature +6662,CIERA Welcomes New Faculty Member Adam Miller,2021-09-01,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,Life & Death of Stars,CIERA Stories,Achievement,2020,79,157701,Cosmos Magazine, +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2021,61,962070,"ABC7, WBEZ", +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Achievement|Science,2021,,,, +6776,Astronomers capture red supergiant’s death throes,2022-01-06,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",2022-01-26,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Achievement|Education,2021,,,, +6885,Wen-fai Fong named Sloan Research Fellow,2022-02-15,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Data Science & Computing|Education|Outreach|Science,2021,36,3944060,Cosmos Magazine, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Event|Science,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2021,78,835118,Cosmos Magazine, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Education|Outreach,2021,31,362606,ANI, +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,69,366250,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7031,Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society,2022-04-06,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,CIERA Stories,Achievement,2021,37,602738,"• WTTW, Sept. 12, 2022", +7033,CIERA Astronomers Travel to Mexico to Install TolTEC Camera,2022-04-06,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Achievement|Event,2021,85,1573962,"• Space Daily, Aug. 15, 2022", +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,,,, +7084,Erin Cox Awarded NSF MPS-Ascend Fellowship,2022-04-29,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7104,Tarraneh Eftekhari Named NASA Einstein Fellow,2022-05-03,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,Life & Death of Stars,CIERA Stories,Achievement,2021,1,1647928,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Event|Outreach,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Achievement|Data Science & Computing,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories|External Press,Event|Outreach,2021,17,279507,Cosmos Magazine, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Outreach,2021,,,, +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,8,6315920,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Event|Science,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Education|Interdisciplinary,2021,,,, +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",2022-06-29,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,Black Holes & Dead Stars,Northwestern Press,Science,2021,64,98142,Cosmos Magazine, +7243,CIERA student's paper highlighted by NASA's SOFIA Science Center,2022-07-08,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,Life & Death of Stars,External Press,Science,2021,,,, +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Achievement|Science,2021,80,453892,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2021,88,19127,"CNET, Sky and Telescope", +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,,,, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Black Holes & Dead Stars|Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Outreach,2021,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars|Life & Death of Stars,Northwestern Press,Event|Science,2021,,,, +7350,CIERA Postdocs Advance to New Positions,2022-09-14,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,CIERA Stories,Achievement,2022,0,,"• WTTW, Sept. 12, 2022", +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach,2022,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Interdisciplinary|Outreach,2022,,,, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,External Press|Northwestern Press,Science,2021,,,, +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Exoplanets & The Solar System|Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars|Life & Death of Stars,Northwestern Press,Interdisciplinary|Science,2021,0,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2022,,,, +7631,The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci,2022-10-13,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,CIERA Stories,Achievement,2022,38,152146598,MSN, +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2022,45,42292,ANI,As of 2023-05-09 +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,,,, +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,65,37683287,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7698,CIERA Hosts SEDM & ZTF,2022-11-04,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Education|Event,2022,8,285271,Cosmos Magazine, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Achievement|Event|Outreach,2022,,,, +7711,What makes gamma-ray bursts blink on and off?,2022-11-08,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Achievement|Science,2022,,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Education|Event|Interdisciplinary,2022,80,1020348026,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars|Life & Death of Stars,CIERA Stories,Event|Interdisciplinary,2022,109,616199,"• WTTW, Sept. 12, 2022", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,45,20295513,"• WTTW, Sept. 12, 2022", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach|Science,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing|Interdisciplinary|Outreach,2022,3,103829,ANI,As of 2023-05-09 +7894,Professor Dave Meyer retires after 35 years at Northwestern,2023-01-11,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Education,2022,2,557659,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,CIERA Stories|External Press,Science,2022,,,, +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,External Press|Northwestern Press,Science,2022,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press|Northwestern Press,Outreach|Science,2022,,,, +8015,Graduate student's photos of green comet featured in major media outlets,2023-02-03,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,Galaxies & Cosmology,External Press,Outreach,2022,1,12661,,Included local evening news feature +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2022,14,2349700,, +8056,CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award,2023-02-16,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,20,740861,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,External Press|Northwestern Press,Achievement,2022,,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Education|Interdisciplinary,2022,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8131,Northwestern to host gravitational-wave researchers from around the globe,2023-03-08,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2022,,,, +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2022,10,2857204,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +8166,International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA,2023-04-14,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary|Outreach,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Achievement|Interdisciplinary,2022,,,, +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2022,20,68799244,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +8271,Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award,2023-04-28,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Outreach,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Interdisciplinary,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Event|Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories|External Press,Data Science & Computing|Event|Interdisciplinary|Outreach,2022,,,, +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Event|Interdisciplinary,2022,0,,"CNET, Sky and Telescope", +8365,PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship,2023-06-07,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,46,559515569,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Science,2022,,,, +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,48,265049,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",Included local evening news feature +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2022,22,13999,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,,,, +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education|Outreach,2022,79,1743640,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Education|Event|Outreach,2022,0,,, diff --git a/data/processed_data/press.exploded.csv b/data/processed_data/press.exploded.csv new file mode 100644 index 0000000..02bf60b --- /dev/null +++ b/data/processed_data/press.exploded.csv @@ -0,0 +1,2805 @@ +id,Title,Date,Permalink,Research Topics,Press Types,Categories,Year,Press Mentions,People Reached,Top Outlets,Notes +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",2018-07-26,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2017,27,147565,, +437,12th International LISA Symposium Held in Chicago by CIERA & AAS,2018-07-13,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,11,3362346,"• WTTW, Sept. 12, 2022", +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Black Holes & Dead Stars,External Press,Science,2017,32,14866021,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Stellar Dynamics & Stellar Populations,External Press,Science,2017,32,14866021,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Event,2015,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Interdisciplinary,2015,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Outreach,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Event,2015,71,928915,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Interdisciplinary,2015,71,928915,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Outreach,2015,71,928915,, +1286,CIERA Sponsors Meeting of Gravitational Wave International Committee,2018-07-08,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",2018-06-29,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,23,1324205,Cosmos Magazine, +1289,Experts Gather to Discuss the Circumgalactic Medium,2018-08-04,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,Galaxies & Cosmology,CIERA Stories,Event,2017,8,1424054,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Achievement,2017,18,2327189,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Education,2017,18,2327189,, +1295,Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson,2017-09-01,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,CIERA Stories,Achievement,2016,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Event,2017,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Interdisciplinary,2017,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Outreach,2017,,,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Achievement,2017,11,292594,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Data Science & Computing,2017,11,292594,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Data Science & Computing,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars,CIERA Stories,Event,2017,37,25093,"• Space Daily, Aug. 15, 2022", +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,37,25093,"• Space Daily, Aug. 15, 2022", +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,37,25093,"• Space Daily, Aug. 15, 2022", +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,37,25093,"• Space Daily, Aug. 15, 2022", +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,0,,Cosmos Magazine, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2017,0,,Cosmos Magazine, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars,CIERA Stories,Event,2017,11,25730,ANI, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,11,25730,ANI, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,11,25730,ANI, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,11,25730,ANI, +1324,Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting,2017-09-01,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Black Holes & Dead Stars,CIERA Stories,Science,2017,73,1435743,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,73,1435743,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2017,73,1435743,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2017,,,, +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2017,,,, +1347,Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran,2017-09-18,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,Life & Death of Stars,External Press,Science,2017,,,, +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,82,425818,"ABC7, WBEZ", +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,External Press,Achievement,2017,82,425818,"ABC7, WBEZ", +1352,CIERA Researchers Contribute to Record-setting Gravitational Wave Detection,2017-09-27,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,52,1032411,ANI, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2017,,,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,External Press,Achievement,2017,23,285679,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,Northwestern Press,Achievement,2017,23,285679,, +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Achievement,2017,40,4928507,,Included local evening news feature +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Education,2017,40,4928507,,Included local evening news feature +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,CIERA Stories,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1370,CIERA’s Shane Larson Joins U.S. NASA LISA Study Team,2017-10-15,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories,Event,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories,Outreach,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,Northwestern Press,Event,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,Northwestern Press,Outreach,2017,,,, +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,7,144518,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",As of 2023-05-09 +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Education,2017,7,144518,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",As of 2023-05-09 +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Achievement,2017,67,570333,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Interdisciplinary,2017,67,570333,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Achievement,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Outreach,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Achievement,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Interdisciplinary,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Outreach,2017,29,757026,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Event,2017,2,42657,, +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2017,2,42657,, +1390,REU Student José Flores Velazquez Presents Research on Capitol Hill,2018-04-20,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,30,10955637,"ABC7, WBEZ", +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Education,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Event,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Education,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Event,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Achievement,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Education,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Event,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,0,,,Included local evening news feature +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2017,0,,,Included local evening news feature +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Achievement,2017,0,,, +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Science,2017,0,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Achievement,2017,,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Event,2017,,,, +1399,Embassy of Greece Interviews CIERA Director Vicky Kalogera,2018-03-27,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,External Press,Achievement,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2017,,,, +1411,Top Telescope Access for CIERA Researchers,2017-11-01,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,CIERA Stories,Science,2017,59,663449,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Event,2017,43,341668,ANI, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Interdisciplinary,2017,43,341668,ANI, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Outreach,2017,43,341668,ANI, +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Event,2017,54,46130051,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Outreach,2017,54,46130051,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,External Press,Achievement,2017,24,1682561,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,Northwestern Press,Achievement,2017,24,1682561,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +1438,CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,CIERA Stories,Achievement,2017,29,432179,"• Space Daily, Aug. 15, 2022", +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Achievement,2017,0,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Education,2017,0,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Event,2017,0,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Interdisciplinary,2017,0,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Galaxies & Cosmology,Northwestern Press,Science,2017,,,, +1452,CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics,2018-01-10,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,Northwestern Press,Achievement,2017,,,, +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,External Press,Science,2017,76,2700451,ANI,Included local evening news feature +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Science,2017,76,2700451,ANI,Included local evening news feature +1456,Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos,2018-01-09,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,Life & Death of Stars,External Press,Science,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Education,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Event,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Outreach,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2017,0,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,0,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars,External Press,Science,2017,69,2290110,ANI, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars,Northwestern Press,Science,2017,69,2290110,ANI, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Life & Death of Stars,External Press,Science,2017,69,2290110,ANI, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Life & Death of Stars,Northwestern Press,Science,2017,69,2290110,ANI, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars,CIERA Stories,Event,2017,9,1589517,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,9,1589517,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,9,1589517,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,9,1589517,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Achievement,2017,,,, +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Outreach,2017,,,, +1493,Another Way for Stellar-mass Black Holes to Grow Larger,2018-08-17,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,Black Holes & Dead Stars,External Press,Science,2017,58,501709,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022",Included local evening news feature +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Event,2018,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Outreach,2018,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1613,CIERA REU Panel Discussion Explores Careers in Astrophysics,2018-08-06,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,CIERA Stories,Education,2017,0,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement,2017,14,294203,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2017,14,294203,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Interdisciplinary,2017,14,294203,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2017,14,294203,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Data Science & Computing,2017,60,7955388,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Education,2017,60,7955388,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Interdisciplinary,2017,60,7955388,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +1668,Astronomers Witness Birth of New Star from Stellar Explosion,2018-09-20,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,Life & Death of Stars,External Press,Science,2018,,,, +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Achievement,2017,19,3929413,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Science,2017,19,3929413,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",2018-09-01,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,CIERA Stories,Achievement,2017,0,,, +1698,CIERA Researchers Featured in “Humans of LIGO”,2018-09-20,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Event,2018,43,1703499,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2018,43,1703499,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Event,2018,,,, +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Outreach,2018,,,, +1928,CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,CIERA Stories,Achievement,2016,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Event,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Interdisciplinary,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Outreach,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Event,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Interdisciplinary,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Outreach,2018,61,71549,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Achievement,2018,62,235331,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Event,2018,62,235331,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Outreach,2018,62,235331,, +1940,CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,27,1556154,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Event,2018,75,144143,Cosmos Magazine, +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Outreach,2018,75,144143,Cosmos Magazine, +1950,New Issue of “LIGO Magazine” Available,2017-08-31,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories,Outreach,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,External Press,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,External Press,Outreach,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,Northwestern Press,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,Northwestern Press,Outreach,2016,,,, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Event,2016,65,237466,ANI, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Outreach,2016,65,237466,ANI, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Education,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Interdisciplinary,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2016,32,31563284,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Education,2016,57,4505139,MSN, +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Event,2016,57,4505139,MSN, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Education,2016,0,,MSN, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Interdisciplinary,2016,0,,MSN, +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,External Press,Science,2016,54,9258,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,Northwestern Press,Science,2016,54,9258,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,External Press,Science,2016,,,, +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,Northwestern Press,Science,2016,,,, +2088,The Computing Power Behind CIERA’s Galaxy Formation Research,2017-07-20,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,11,155243,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Event,2016,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Outreach,2016,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +2111,CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine,2018-11-02,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,Life & Death of Stars,External Press,Science,2018,22,2493,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +2199,CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video,2017-06-12,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,Northwestern Press,Achievement,2016,27,5209876,ANI, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,35,20766778,"ABC7, WBEZ", +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,35,20766778,"ABC7, WBEZ", +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,35,20766778,"ABC7, WBEZ", +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Event,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2016,,,, +2210,Astronomy Students Awarded Best Senior Thesis,2017-05-30,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Event,2016,29,716569,"CNET, Sky and Telescope", +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Interdisciplinary,2016,29,716569,"CNET, Sky and Telescope", +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Outreach,2016,29,716569,"CNET, Sky and Telescope", +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Achievement,2016,36,254483,MSN, +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Interdisciplinary,2016,36,254483,MSN, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,28,2360703,Cosmos Magazine, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2016,28,2360703,Cosmos Magazine, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,28,2360703,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Event,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Interdisciplinary,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Outreach,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Event,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Interdisciplinary,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Outreach,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Event,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Interdisciplinary,2016,76,590534,Cosmos Magazine, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Outreach,2016,76,590534,Cosmos Magazine, +2321,Chicago Woman Magazine Features CIERA Director Prof. Kalogera,2017-05-06,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,External Press,Achievement,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +2337,CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence,2017-05-01,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Data Science & Computing,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Interdisciplinary,2016,50,6501916,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",As of 2023-05-09 +2340,Prof. Faucher-Giguère Receives NSF Honor for Young Faculty,2017-04-29,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,105,17832,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Life & Death of Stars,CIERA Stories,Achievement,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2016,24,10652743,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +2343,Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space,2017-04-27,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,CIERA Stories,Achievement,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Education,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Event,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Outreach,2016,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Data Science & Computing,2018,47,6978142,"CNET, Sky and Telescope",Included local evening news feature +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Event,2018,47,6978142,"CNET, Sky and Telescope",Included local evening news feature +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Interdisciplinary,2018,47,6978142,"CNET, Sky and Telescope",Included local evening news feature +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2016,,,, +2439,CIERA Pilot Program Exposes Students to Astronomy Research,2017-03-13,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,CIERA Stories,Education,2016,59,686717,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +2442,CIERA Professor Giles Novak Joins ALMA Science Advisory Committee,2017-03-12,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,CIERA Stories,Achievement,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2451,Media Seek Expertise on New Planets in TRAPPIST-1 System,2017-02-28,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,Exoplanets & The Solar System,External Press,Outreach,2016,26,60800,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Education,2016,105,1129083,ANI, +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Event,2016,105,1129083,ANI, +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",2017-01-31,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,Life & Death of Stars,External Press,Science,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2523,Supernova News from CIERA Professor Raffaella Margutti,2017-01-29,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,Life & Death of Stars,External Press,Science,2016,10,3351402,MSN, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2536,CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229,2017-01-27,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,CIERA Stories,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories,Achievement,2016,24,92320598,"• Space Daily, Aug. 15, 2022", +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories,Interdisciplinary,2016,24,92320598,"• Space Daily, Aug. 15, 2022", +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,External Press,Achievement,2016,24,92320598,"• Space Daily, Aug. 15, 2022", +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,External Press,Interdisciplinary,2016,24,92320598,"• Space Daily, Aug. 15, 2022", +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Achievement,2018,57,369192,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Outreach,2018,57,369192,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2018,,,, +2768,Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest,2016-12-31,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,97,31732846,"CNET, Sky and Telescope",As of 2023-05-09 +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,External Press,Achievement,2018,92,539707,"CNET, Sky and Telescope", +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,Northwestern Press,Achievement,2018,92,539707,"CNET, Sky and Telescope", +2819,Year-in-Review Honors for the LIGO Scientific Collaboration,2016-12-30,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Event,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Outreach,2016,,,, +2828,Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni,2016-12-28,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,35,147615,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +2829,Postdocs & Graduate Students Present at Annual CIERA Research Jamboree,2016-12-15,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,CIERA Stories,Event,2016,45,327780,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,0,,, +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,0,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Interdisciplinary,2016,,,, +2995,Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio,2016-11-30,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,Northwestern Press,Achievement,2016,62,11834070,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +2996,Graduate Student Matthew Rickert Wins Reber Fellowship,2016-11-29,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2016,34,2544119,"• WTTW, Sept. 12, 2022",Included local evening news feature +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Interdisciplinary,2016,,,, +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Science,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,34,430222,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System,CIERA Stories,Education,2016,34,430222,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Life & Death of Stars,CIERA Stories,Achievement,2016,34,430222,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Life & Death of Stars,CIERA Stories,Education,2016,34,430222,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars,External Press,Achievement,2016,50,6868815,ANI,As of 2023-05-09 +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars,External Press,Science,2016,50,6868815,ANI,As of 2023-05-09 +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,50,6868815,ANI,As of 2023-05-09 +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,50,6868815,ANI,As of 2023-05-09 +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2016,50,6868815,ANI,As of 2023-05-09 +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Stellar Dynamics & Stellar Populations,External Press,Science,2016,50,6868815,ANI,As of 2023-05-09 +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Achievement,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Education,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Event,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,30,669738,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Education,2016,30,669738,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,30,669738,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3007,CIERA’s Board of Visitors Meets with Top University Officials,2016-10-30,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,CIERA Stories,Event,2016,0,,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories,Outreach,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,Northwestern Press,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,Northwestern Press,Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2016,,,, +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Achievement,2016,86,305070,"• Space Daily, Aug. 15, 2022", +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Interdisciplinary,2016,86,305070,"• Space Daily, Aug. 15, 2022", +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Achievement,2016,,,, +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Education,2016,,,, +3065,Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics,2016-09-30,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,CIERA Stories,Achievement,2016,48,37849,ANI, +3208,CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship,2016-09-27,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Education,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Event,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Outreach,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Outreach,2016,,,, +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Event,2016,74,239396,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Outreach,2016,74,239396,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +3224,CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,2016-09-02,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,CIERA Stories,Event,2016,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2018,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2018,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,CIERA Stories,Achievement,2015,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,Northwestern Press,Achievement,2015,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2018,4,402189,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2018,4,402189,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Science,2018,4,402189,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Achievement,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Education,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Interdisciplinary,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Outreach,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Achievement,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Education,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Interdisciplinary,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Outreach,2018,57,322644,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars,External Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars,Northwestern Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Life & Death of Stars,External Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2018,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Data Science & Computing,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Event,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Interdisciplinary,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Science,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Education,2015,46,163108,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Event,2015,46,163108,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Interdisciplinary,2015,46,163108,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Education,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Event,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Education,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Event,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Education,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Event,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2015,8,395756,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3308,CIERA's 2016 Summer Student Researchers,2016-08-28,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Data Science & Computing,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Interdisciplinary,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Outreach,2015,,,, +3314,Physics and Astronomy Department Rising in Impact and Visibility,2016-07-30,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,Northwestern Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Achievement,2015,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Education,2015,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Interdisciplinary,2015,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Education,2015,60,1954663,Cosmos Magazine, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Event,2015,60,1954663,Cosmos Magazine, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Outreach,2015,60,1954663,Cosmos Magazine, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,CIERA Stories,Data Science & Computing,2015,102,173724,ANI, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,Northwestern Press,Data Science & Computing,2015,102,173724,ANI, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,CIERA Stories,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,External Press,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,Northwestern Press,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,81,9409066,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,CIERA Stories,Achievement,2015,,,, +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,Northwestern Press,Achievement,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Education,2015,101,150302183,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Event,2015,101,150302183,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Outreach,2015,101,150302183,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Education,2015,,,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Event,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System,CIERA Stories,Achievement,2015,39,5280011,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System,CIERA Stories,Science,2015,39,5280011,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Life & Death of Stars,CIERA Stories,Achievement,2015,39,5280011,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Life & Death of Stars,CIERA Stories,Science,2015,39,5280011,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Science,2018,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories,Event,2015,0,,ANI, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories,Outreach,2015,0,,ANI, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,External Press,Event,2015,0,,ANI, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,External Press,Outreach,2015,0,,ANI, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Event,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Interdisciplinary,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Outreach,2015,,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Event,2018,0,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2018,0,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Event,2018,,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Outreach,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Education,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Outreach,2018,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Data Science & Computing,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Education,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Event,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Outreach,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Education,2015,58,7865231,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Event,2015,58,7865231,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Outreach,2015,58,7865231,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Event,2018,,,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Interdisciplinary,2018,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Education,2015,71,37375784,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Event,2015,71,37375784,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Interdisciplinary,2015,71,37375784,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Education,2015,36,282852,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Event,2015,36,282852,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Outreach,2015,36,282852,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",2016-05-01,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Data Science & Computing,2018,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Interdisciplinary,2018,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Science,2018,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Education,2015,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Event,2015,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Outreach,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,CIERA Stories,Event,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,Northwestern Press,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Data Science & Computing,2015,43,124270,"• WTTW, Sept. 12, 2022", +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Event,2015,43,124270,"• WTTW, Sept. 12, 2022", +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Interdisciplinary,2015,43,124270,"• WTTW, Sept. 12, 2022", +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Data Science & Computing,2015,43,124270,"• WTTW, Sept. 12, 2022", +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Event,2015,43,124270,"• WTTW, Sept. 12, 2022", +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Interdisciplinary,2015,43,124270,"• WTTW, Sept. 12, 2022", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars,CIERA Stories,Science,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2015,,,, +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event,2015,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2015,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",2016-03-31,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,External Press,Achievement,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Event,2015,33,974324,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Outreach,2015,33,974324,, +3556,The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology,2016-02-28,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,CIERA Stories,Event,2015,,,, +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,27,1981387,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2015,27,1981387,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,31,488149,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,31,488149,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,31,488149,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Education,2015,35,3162614,"CNET, Sky and Telescope", +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Event,2015,35,3162614,"CNET, Sky and Telescope", +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Outreach,2015,35,3162614,"CNET, Sky and Telescope", +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event,2015,,,, +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2015,,,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Achievement,2015,66,379213,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Event,2015,66,379213,, +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",Included local evening news feature +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2015,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",Included local evening news feature +3614,New Monthly Night at Dearborn Observatory with CIERA Astronomers,2016-01-27,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,CIERA Stories,Event,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Education,2015,55,112419,MSN, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Outreach,2015,55,112419,MSN, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Science,2015,55,112419,MSN, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Education,2015,55,112419,MSN, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Outreach,2015,55,112419,MSN, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Science,2015,55,112419,MSN, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Achievement,2015,32,1055,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Education,2015,32,1055,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Outreach,2015,32,1055,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Achievement,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Data Science & Computing,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Education,2015,,,, +3624,AAAS Fellow Jeremy Ward Visits CIERA,2015-12-06,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,CIERA Stories,Event,2015,52,5465989,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,External Press,Achievement,2018,58,5216617,, +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,Northwestern Press,Achievement,2018,58,5216617,, +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2018,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3637,Professors Novak & Sageman Named to 2015 Faculty Honor Roll,2015-11-30,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,CIERA Stories,Achievement,2015,3,5864267,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,45,591014,ANI, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,45,591014,ANI, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2015,45,591014,ANI, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education,2015,,,, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Achievement,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Interdisciplinary,2015,,,, +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,51,53531,"• WTTW, Sept. 12, 2022", +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2015,51,53531,"• WTTW, Sept. 12, 2022", +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Education,2015,36,421322,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Event,2015,36,421322,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Outreach,2015,36,421322,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +3661,CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold,2015-11-10,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,CIERA Stories,Event,2015,27,3515718,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Education,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Event,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Outreach,2015,,,, +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Exoplanets & The Solar System,External Press,Achievement,2018,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Life & Death of Stars,External Press,Achievement,2018,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +3724,CIERA Professor Wen-Fai Fong Interviewed by Science News,2019-02-25,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3732,CIERA Director Elected to LSSTC ExecBoard,2015-11-01,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,CIERA Stories,Achievement,2015,68,15163,"ABC7, WBEZ", +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Education,2015,,,, +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Event,2015,,,, +3737,Dearborn Observatory Featured in Open House Chicago 2015,2015-10-25,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,External Press,Event,2015,29,3655438,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2015,0,,ANI, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2015,0,,ANI, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2015,0,,ANI, +3741,CIERA’s Shane Larson Elected APS Fellow,2015-10-15,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,CIERA Stories,Achievement,2015,0,,ANI,Included local evening news feature +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,39,61424,"• Space Daily, Aug. 15, 2022", +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,39,61424,"• Space Daily, Aug. 15, 2022", +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Education,2015,110,26097676,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Event,2015,110,26097676,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Outreach,2015,110,26097676,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Education,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Event,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Outreach,2015,,,, +3757,CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics,2015-11-22,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Education,2015,21,28836382,"ABC7, WBEZ",Included local evening news feature +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Event,2015,21,28836382,"ABC7, WBEZ",Included local evening news feature +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Outreach,2015,21,28836382,"ABC7, WBEZ",Included local evening news feature +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Education,2015,,,, +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Event,2015,,,, +3784,CIERA's 2015 Summer Student Researchers,2015-08-31,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,CIERA Stories,Education,2014,,,, +3787,CIERA Director Vicky Kalogera Speaks to Office for Research Staff,2015-08-30,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,CIERA Stories,Event,2014,11,6052567,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories,Science,2014,60,25918923,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,External Press,Science,2014,60,25918923,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,Northwestern Press,Science,2014,60,25918923,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3793,Immediate Opening for Graduate Student: CIERA Keck Foundation Grant,2015-07-27,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +3795,CIERA Undergraduate Researcher Accepted to Ph.D. Programs,2015-07-22,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,CIERA Stories,Achievement,2014,5,7488271,"ABC7, WBEZ", +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,26,1161643,"CNET, Sky and Telescope", +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories,Science,2014,26,1161643,"CNET, Sky and Telescope", +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,External Press,Achievement,2014,26,1161643,"CNET, Sky and Telescope", +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,External Press,Science,2014,26,1161643,"CNET, Sky and Telescope", +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Education,2014,59,446404,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Event,2014,59,446404,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,63,93486,"CNET, Sky and Telescope", +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories,Science,2014,63,93486,"CNET, Sky and Telescope", +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,External Press,Achievement,2014,63,93486,"CNET, Sky and Telescope", +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,External Press,Science,2014,63,93486,"CNET, Sky and Telescope", +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Education,2014,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Event,2014,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Outreach,2014,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",2019-02-27,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,External Press,Achievement,2018,48,38521944,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Education,2018,23,459301,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Interdisciplinary,2018,23,459301,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Outreach,2018,23,459301,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Data Science & Computing,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Education,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Interdisciplinary,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Science,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Data Science & Computing,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Education,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Interdisciplinary,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Science,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Data Science & Computing,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Education,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Interdisciplinary,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Outreach,2018,,,, +3843,Eight New Postdoctoral Researchers Join CIERA,2019-04-01,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,CIERA Stories,Achievement,2018,,,, +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Black Holes & Dead Stars,External Press,Achievement,2018,98,2021711,"ABC7, WBEZ", +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,98,2021711,"ABC7, WBEZ", +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Data Science & Computing,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Interdisciplinary,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Outreach,2018,26,385291,Cosmos Magazine, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Science,2018,26,385291,Cosmos Magazine, +3868,CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves,2019-04-01,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Event,2018,117,64222,MSN, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Outreach,2018,117,64222,MSN, +3872,Professor Margutti’s Paper Among Top Ten in 2018,2019-04-03,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,56,15043971,"ABC7, WBEZ", +3881,Illinois Congressman Visits CIERA,2015-06-27,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,CIERA Stories,Outreach,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Education,2014,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Event,2014,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Outreach,2014,0,,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +3885,NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden,2015-06-10,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,23,5434721,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Science,2014,23,5434721,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Achievement,2014,34,126557,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Interdisciplinary,2014,34,126557,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Science,2014,34,126557,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Education,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Event,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Outreach,2014,,,, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Education,2014,0,,MSN, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event,2014,0,,MSN, +3931,CIERA Fellow Geller Wins First Prize in Data Visualization Challenge,2015-04-29,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,Life & Death of Stars,CIERA Stories,Achievement,2014,84,342230122,"ABC7, WBEZ", +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Black Holes & Dead Stars,External Press,Science,2018,59,752947,ANI,As of 2023-05-09 +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,59,752947,ANI,As of 2023-05-09 +3939,CIERA Faculty Comment on World’s First Image of a Black Hole,2019-04-16,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2018,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Event,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Interdisciplinary,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Science,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Event,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Interdisciplinary,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Science,2014,23,20090,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Science,2014,,,, +3945,Two NSF Graduate Fellowships Awarded to NU Astronomy Students,2015-04-18,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,15,247140,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Achievement,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Data Science & Computing,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Interdisciplinary,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Achievement,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Data Science & Computing,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Interdisciplinary,2014,12,670742,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",As of 2023-05-09 +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Achievement,2018,,,, +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Event,2018,,,, +3964,CIERA’s Paul Williams on Studying Star Formation in Antarctica,2019-04-19,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,Galaxies & Cosmology,CIERA Stories,Science,2018,21,40589589,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Education,2014,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Event,2014,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Outreach,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Achievement,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Event,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Outreach,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Achievement,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Event,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Outreach,2014,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +3974,CIERA to Welcome Four New Postdocs in Fall 2015,2015-03-19,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,CIERA Stories,Achievement,2014,56,12943827,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +3976,Summer Undergraduate Student Success Stories: CIERA Alumni,2015-03-01,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,CIERA Stories,Education,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Achievement,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Data Science & Computing,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Science,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,CIERA Stories,Science,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,External Press,Science,2014,,,, +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",2015-02-20,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",Included local evening news feature +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,CIERA Stories,Science,2014,0,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,External Press,Science,2014,0,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,Northwestern Press,Science,2014,0,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2014,,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Education,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Outreach,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Achievement,2014,50,11267804,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Event,2014,50,11267804,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Science,2014,50,11267804,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Achievement,2014,50,11267804,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Event,2014,50,11267804,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Science,2014,50,11267804,, +4028,Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks,2014-12-15,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,Galaxies & Cosmology,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Education,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Interdisciplinary,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Outreach,2014,,,, +4040,A New Infrared Camera for Exoplanet Imaging,2019-04-29,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,Exoplanets & The Solar System,CIERA Stories,Science,2018,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Achievement,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Outreach,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Science,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Achievement,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Outreach,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Science,2014,6,1373258,"• Space Daily, Aug. 15, 2022", +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Achievement,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Education,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Event,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Outreach,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Achievement,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Education,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Event,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Outreach,2014,9,2649909,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN",As of 2023-05-09 +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Event,2014,27,19438863,ANI, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2014,27,19438863,ANI, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Science,2014,27,19438863,ANI, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Education,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Event,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Outreach,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Science,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Education,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Event,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Outreach,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Science,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Education,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Event,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Outreach,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Science,2014,0,,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Achievement,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Education,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Event,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Achievement,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Education,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Event,2014,,,, +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Achievement,2014,5,597107,,As of 2023-05-09 +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Interdisciplinary,2014,5,597107,,As of 2023-05-09 +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Science,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Education,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Event,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Outreach,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Education,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Event,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Outreach,2014,,,, +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,10,27432795,MSN,Included local evening news feature +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Science,2014,10,27432795,MSN,Included local evening news feature +4082,Professor Meyer Named to 2014 Faculty Honor Roll,2014-09-09,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,CIERA Stories,Achievement,2014,61,7199589,"CNET, Sky and Telescope", +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2013,50,733225,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2013,50,733225,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2013,50,733225,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2013,50,733225,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Event,2013,,,, +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories,Achievement,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories,Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,External Press,Achievement,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,External Press,Science,2013,,,, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Education,2013,30,62401,MSN, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Outreach,2013,30,62401,MSN, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Education,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Event,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Science,2013,,,, +4096,LIGO on Lookout for 8 Sources of Gravitational Waves,2019-05-06,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,43,4152294,ANI, +4100,First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole,2019-05-02,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4127,The Science that Shared Buzz Aldrin’s Space Selfie,2014-07-27,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,External Press,Science,2013,,,, +4129,CIERA Director Elected Trustee of Aspen Center for Physics,2014-07-15,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,CIERA Stories,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Achievement,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Event,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Outreach,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Science,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Achievement,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Event,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Outreach,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Science,2013,58,1248493,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Achievement,2013,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Education,2013,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Interdisciplinary,2013,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories,Science,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,External Press,Achievement,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,External Press,Science,2013,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Education,2018,43,1190024,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Event,2018,43,1190024,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Interdisciplinary,2018,43,1190024,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Outreach,2018,43,1190024,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,93,1871562,MSN, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2013,93,1871562,MSN, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,External Press,Achievement,2013,93,1871562,MSN, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,External Press,Interdisciplinary,2013,93,1871562,MSN, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2013,43,2495034,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2013,43,2495034,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2013,43,2495034,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2013,43,2495034,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Achievement,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Education,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Outreach,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Education,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Event,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Outreach,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Achievement,2013,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Event,2013,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Outreach,2013,0,,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2018,,,, +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Galaxies & Cosmology,External Press,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Achievement,2018,10,3535501,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Interdisciplinary,2018,10,3535501,, +4172,What Next for Gravitational Wave Detection?,2019-06-04,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,External Press,Science,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,Northwestern Press,Science,2018,,,, +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Achievement,2013,70,157901,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Interdisciplinary,2013,70,157901,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Education,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Event,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Science,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Education,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Event,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Science,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Achievement,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Education,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Event,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Interdisciplinary,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Outreach,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Achievement,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Education,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Event,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Interdisciplinary,2013,0,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Outreach,2013,0,,, +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Event,2018,72,4578440,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Interdisciplinary,2018,72,4578440,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",2019-06-19,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4234,Fred Rasio Receives 2019 Brouwer Award,2019-06-20,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,Northwestern Press,Achievement,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Event,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Science,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,0,,"• WTTW, Sept. 12, 2022", +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2018,0,,"• WTTW, Sept. 12, 2022", +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2018,0,,"• WTTW, Sept. 12, 2022", +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,0,,"• WTTW, Sept. 12, 2022", +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2018,0,,"• WTTW, Sept. 12, 2022", +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2018,0,,"• WTTW, Sept. 12, 2022", +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Event,2018,25,1753596,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Interdisciplinary,2018,25,1753596,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Event,2018,101,10780049,"• WTTW, Sept. 12, 2022", +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Interdisciplinary,2018,101,10780049,"• WTTW, Sept. 12, 2022", +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Achievement,2018,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Education,2018,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4280,Aprajita Hajela Wins NASA Future Investigator Award,2019-07-10,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,0,,"• Space Daily, Aug. 15, 2022", +4283,Northwestern Leads Effort to Detect New Types of Cosmic Events,2019-07-17,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Black Holes & Dead Stars,External Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Life & Death of Stars,External Press,Science,2018,,,, +4328,SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space,2019-08-15,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2018,0,,"• Space Daily, Aug. 15, 2022", +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Black Holes & Dead Stars,External Press,Science,2018,19,9017092,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,19,9017092,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Event,2018,,,, +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Outreach,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Education,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Event,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Outreach,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Data Science & Computing,2018,29,7363982,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Event,2018,29,7363982,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Interdisciplinary,2018,29,7363982,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Outreach,2018,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Science,2018,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Black Holes & Dead Stars,Northwestern Press,Science,2019,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4406,Announcing CIERA’s 2019 Summer Undergraduate Researchers,2019-06-01,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,CIERA Stories,Education,2018,4,8814416,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars,External Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars,Northwestern Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Galaxies & Cosmology,External Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Galaxies & Cosmology,Northwestern Press,Science,2019,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Education,2018,28,34486354,"• WTTW, Sept. 12, 2022",Included local evening news feature +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2018,28,34486354,"• WTTW, Sept. 12, 2022",Included local evening news feature +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2018,28,34486354,"• WTTW, Sept. 12, 2022",Included local evening news feature +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Education,2013,18,2679870,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Event,2013,18,2679870,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Outreach,2013,18,2679870,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Data Science & Computing,2013,30,58891323,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Event,2013,30,58891323,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Interdisciplinary,2013,30,58891323,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories,Achievement,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories,Outreach,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,Northwestern Press,Achievement,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,Northwestern Press,Outreach,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Achievement,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Outreach,2013,,,, +4471,Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship,2014-05-01,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,CIERA Stories,Achievement,2013,33,19439557,MSN, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Event,2013,,,, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Interdisciplinary,2013,,,, +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,33,427202,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Event,2013,33,427202,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Uncategorized,2013,,,, +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Uncategorized,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Event,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Outreach,2013,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Data Science & Computing,2019,90,90004630,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Education,2019,90,90004630,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Event,2019,90,90004630,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Interdisciplinary,2019,90,90004630,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4531,"""A star has been flickering for years – and researchers think they've figured out why""",2019-10-31,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,Life & Death of Stars,External Press,Science,2019,,,, +4534,CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS,2019-11-01,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,Northwestern Press,Achievement,2019,,,, +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,External Press,Science,2019,34,5282289,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,Northwestern Press,Science,2019,34,5282289,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Achievement,2018,0,,, +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Education,2018,0,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Data Science & Computing,2019,82,45834,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Education,2019,82,45834,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Event,2019,82,45834,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Interdisciplinary,2019,82,45834,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +4591,CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,CIERA Stories,Achievement,2018,66,17171489,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Education,2019,65,275112,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Event,2019,65,275112,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Outreach,2019,65,275112,, +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Event,2019,51,16380813,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Outreach,2019,51,16380813,"• Space Daily, Aug. 15, 2022",Included local evening news feature +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Event,2019,,,, +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Outreach,2019,,,, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Event,2013,4,2941748,MSN, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Outreach,2013,4,2941748,MSN, +4636,CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows,2019-11-26,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,Northwestern Press,Achievement,2019,93,3946937,ANI, +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories,Science,2019,23,493693,"• Space Daily, Aug. 15, 2022", +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2019,23,493693,"• Space Daily, Aug. 15, 2022", +4650,An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light,2019-12-09,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4656,First Discoveries by the Young Supernova Experiment,2019-12-08,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,Life & Death of Stars,External Press,Science,2019,,,, +4658,Faucher-Giguère Named Highly Cited Researcher,2019-12-02,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,Northwestern Press,Achievement,2019,,,, +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,CIERA Stories,Science,2019,13,45920686,"• WTTW, Sept. 12, 2022", +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,External Press,Science,2019,13,45920686,"• WTTW, Sept. 12, 2022", +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Achievement,2019,6,248739,"ABC7, WBEZ", +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Science,2019,6,248739,"ABC7, WBEZ", +4713,This Exoplanet is in a Death Dance with its Star,2020-01-13,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,Exoplanets & The Solar System,External Press,Science,2019,34,947624,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4762,CIERA Postdocs Advance to New Positions,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,CIERA Stories,Achievement,2018,,,, +4763,Using Gravitational Waves to See Inside Stars,2019-12-09,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,58,68149974,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",As of 2023-05-09 +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars,CIERA Stories,Event,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Exoplanets & The Solar System,CIERA Stories,Event,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Data Science & Computing,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Event,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Outreach,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Galaxies & Cosmology,Northwestern Press,Science,2019,27,2670008,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,27,2670008,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Life & Death of Stars,Northwestern Press,Science,2019,27,2670008,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Galaxies & Cosmology,Northwestern Press,Science,2019,23,1540864,, +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Life & Death of Stars,Northwestern Press,Science,2019,23,1540864,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Event,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Event,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Event,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2019,56,29568,ANI,As of 2023-05-09 +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2019,56,29568,ANI,As of 2023-05-09 +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Data Science & Computing,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Event,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Outreach,2019,,,, +4833,Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows,2020-02-25,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,External Press,Achievement,2019,,,, +4855,Coronavirus/COVID-19 Update,2020-03-13,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,CIERA Stories,Uncategorized,2019,0,,"• WTTW, Sept. 12, 2022", +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Data Science & Computing,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Education,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Event,2019,,,, +4870,Coronavirus/COVID-19 Update,2020-03-25,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,CIERA Stories,Uncategorized,2019,87,17075995,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4875,Seven New Postdoctoral Researchers Join CIERA,2020-04-01,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,CIERA Stories,Achievement,2019,37,494873,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Achievement,2019,83,472221,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Data Science & Computing,2019,83,472221,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Science,2019,83,472221,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Interdisciplinary,2019,,,, +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Outreach,2019,,,, +4888,Prof. Margutti Receives NSF Honor for Junior Faculty,2020-03-26,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,Northwestern Press,Achievement,2019,,,, +4889,A Supernova that Outshines All Others,2020-04-13,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,Life & Death of Stars,External Press,Science,2019,0,,"• WTTW, Sept. 12, 2022", +4899,Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy,2020-04-20,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,0,,, +4901,NASA Hubble Fellowship Awarded to Michael Zevin,2020-04-21,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,CIERA Stories,Achievement,2019,62,660595,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",2020-04-21,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,CIERA Stories,Uncategorized,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2019,76,510547,"ABC7, WBEZ", +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2019,76,510547,"ABC7, WBEZ", +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2019,,,, +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Life & Death of Stars,External Press,Achievement,2019,,,, +4921,Using Gravitational Waves to Approximate Pi,2020-05-19,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4924,Astrophysicists Capture New Class of Transient Objects,2020-05-26,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Achievement,2019,0,,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Education,2019,0,,"• WTTW, Sept. 12, 2022",As of 2023-05-09 +4937,Undergraduate Andrew Bowen Receives AAS Chambliss Award,2020-05-07,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,1,46271267,,Included local evening news feature +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Education,2019,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Outreach,2019,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +4944,Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM,2020-06-01,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,CIERA Stories,Achievement,2019,35,2439111,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +4948,Black Lives Matter,2020-06-06,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,CIERA Stories,Uncategorized,2019,,,, +4964,New Mystery Merger Detected by LIGO-Virgo,2020-06-23,https://ciera.northwestern.edu/2020/06/23/gw190814/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,55,874900,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +4977,CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize,2020-06-18,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,CIERA Stories,Achievement,2019,32,48816638,,As of 2023-05-09 +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,30,14892,Cosmos Magazine, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,30,14892,Cosmos Magazine, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,30,14892,Cosmos Magazine, +4982,Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award,2020-06-19,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4998,Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected,2020-07-14,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5003,Spectacular ultraviolet flash may finally explain how white dwarfs explode,2020-07-23,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5016,Calcium-rich supernova examined with X-rays for first time,2020-08-05,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2019,73,1620240,"ABC7, WBEZ",Included local evening news feature +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Education,2019,,,, +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Black Holes & Dead Stars,CIERA Stories,Science,2019,0,,"CNET, Sky and Telescope", +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,0,,"CNET, Sky and Telescope", +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Black Holes & Dead Stars,Northwestern Press,Science,2020,48,44389896,ANI, +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,48,44389896,ANI, +5078,CIERA Postdocs Move on to New Positions,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,CIERA Stories,Achievement,2020,,,, +5094,Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists,2020-09-08,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,Galaxies & Cosmology,CIERA Stories,Science,2020,0,,MSN, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,58,5076976,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,58,5076976,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Life & Death of Stars,CIERA Stories,Achievement,2020,58,5076976,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Education,2019,,,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Outreach,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Education,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Interdisciplinary,2019,,,, +5382,Update on Initiative for Social Justice,2020-10-01,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,CIERA Stories,Uncategorized,2020,,,, +5446,The Low Spin of the Milky Way's Supermassive Black Hole,2020-10-20,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,32,2340609,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +5454,Star 'Spaghettified' by a Supermassive Black Hole,2020-10-12,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,0,,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5523,Black hole ‘family portrait’ is most detailed to date,2020-10-29,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5526,Statement of Principles and Values,2020-10-28,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,CIERA Stories,Uncategorized,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Black Holes & Dead Stars,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Exoplanets & The Solar System,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Galaxies & Cosmology,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Life & Death of Stars,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2020,76,14023479,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Event,2020,,,, +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Outreach,2020,,,, +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Black Holes & Dead Stars,External Press,Science,2020,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,0,,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Galaxies & Cosmology,CIERA Stories,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Life & Death of Stars,CIERA Stories,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2020,,,, +5624,André de Gouvêa Selected as 2020 AAAS Fellow,2020-11-30,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,CIERA Stories,Achievement,2020,,,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,8,71781425,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2020,8,71781425,, +5678,Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago,2020-12-14,https://ciera.northwestern.edu/2020/12/14/christmas-star/,Exoplanets & The Solar System,External Press,Outreach,2020,16,721099,, +5726,Faucher-Giguère Named Highly Cited Researcher for Second Year,2020-12-21,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,Galaxies & Cosmology,External Press,Achievement,2020,,,, +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2020,4,107523172,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Science,2020,4,107523172,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5759,2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi,2020-10-25,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5761,String of Stars in Milky Way are Related,2021-01-15,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2020,38,687958134,, +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Black Holes & Dead Stars,External Press,Science,2020,35,212745,"• Space Daily, Aug. 15, 2022", +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,35,212745,"• Space Daily, Aug. 15, 2022", +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars,CIERA Stories,Event,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars,CIERA Stories,Outreach,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Exoplanets & The Solar System,CIERA Stories,Event,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Exoplanets & The Solar System,CIERA Stories,Outreach,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Life & Death of Stars,CIERA Stories,Event,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Life & Death of Stars,CIERA Stories,Outreach,2020,83,777382,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022",Included local evening news feature +5842,Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos,2021-02-18,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5863,Major Award for Gravitational Wave Researcher Christopher Berry,2021-03-15,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Black Holes & Dead Stars,External Press,Science,2020,79,24396908,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Life & Death of Stars,External Press,Science,2020,79,24396908,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Exoplanets & The Solar System,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Galaxies & Cosmology,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +5904,Prof. Fong Receives NSF Honor for Young Faculty,2021-03-24,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,Life & Death of Stars,Northwestern Press,Achievement,2020,21,150423863,ANI, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,67,80414,, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2020,67,80414,, +5920,200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics,2021-04-02,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2020,7,9559462,MSN,Included local evening news feature +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Black Holes & Dead Stars,Northwestern Press,Achievement,2020,5,86988,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,5,86988,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Life & Death of Stars,Northwestern Press,Achievement,2020,5,86988,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News", +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Achievement,2020,107,865975,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Education,2020,107,865975,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +5979,Vicky Kalogera Elected to American Academy of Arts and Sciences,2021-04-23,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,,,, +6008,Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs,2021-04-28,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,Life & Death of Stars,CIERA Stories,Science,2020,0,,"• WTTW, Sept. 12, 2022", +6010,American Physical Society Elects Professors Margutti and Larson to Committees,2021-04-17,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,CIERA Stories,Achievement,2020,,,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2020,61,13512,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2020,61,13512,, +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,External Press,Science,2020,3,714265,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,Northwestern Press,Science,2020,3,714265,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Education,2020,20,1507388,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Interdisciplinary,2020,20,1507388,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Outreach,2020,20,1507388,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,External Press,Data Science & Computing,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,External Press,Science,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,Northwestern Press,Science,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,External Press,Data Science & Computing,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,External Press,Science,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,Northwestern Press,Data Science & Computing,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,Northwestern Press,Science,2020,27,73262,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022",Included local evening news feature +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2020,,,, +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,External Press,Science,2020,0,,"• WTTW, Sept. 12, 2022", +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,Northwestern Press,Science,2020,0,,"• WTTW, Sept. 12, 2022", +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars,External Press,Science,2020,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars,Northwestern Press,Science,2020,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Data Science & Computing,2020,,,, +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Interdisciplinary,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars,Northwestern Press,Data Science & Computing,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars,Northwestern Press,Science,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Galaxies & Cosmology,Northwestern Press,Science,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Achievement,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Interdisciplinary,2020,,,, +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,45,3595973,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,45,3595973,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Education,2021,,,, +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Interdisciplinary,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Education,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Outreach,2021,,,, +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,42,3261104,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Life & Death of Stars,Northwestern Press,Achievement,2021,42,3261104,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Black Holes & Dead Stars,CIERA Stories,Science,2021,69,11167057,MSN, +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,69,11167057,MSN, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,65,432560655,"ABC7, WBEZ", +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars,CIERA Stories,Science,2021,65,432560655,"ABC7, WBEZ", +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,65,432560655,"ABC7, WBEZ", +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,65,432560655,"ABC7, WBEZ", +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,65,432560655,"ABC7, WBEZ", +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,65,432560655,"ABC7, WBEZ", +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2021,0,,"ABC7, WBEZ",Included local evening news feature +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,0,,"ABC7, WBEZ",Included local evening news feature +6662,CIERA Welcomes New Faculty Member Adam Miller,2021-09-01,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,Life & Death of Stars,CIERA Stories,Achievement,2020,79,157701,Cosmos Magazine, +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event,2021,61,962070,"ABC7, WBEZ", +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Outreach,2021,61,962070,"ABC7, WBEZ", +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars,Northwestern Press,Achievement,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars,Northwestern Press,Science,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6776,Astronomers capture red supergiant’s death throes,2022-01-06,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",2022-01-26,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Education,2021,,,, +6885,Wen-fai Fong named Sloan Research Fellow,2022-02-15,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2021,36,3944060,Cosmos Magazine, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Education,2021,36,3944060,Cosmos Magazine, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Outreach,2021,36,3944060,Cosmos Magazine, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Science,2021,36,3944060,Cosmos Magazine, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars,CIERA Stories,Event,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars,CIERA Stories,Science,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)",Included local evening news feature +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,78,835118,Cosmos Magazine, +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2021,78,835118,Cosmos Magazine, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,31,362606,ANI, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2021,31,362606,ANI, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,31,362606,ANI, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2021,31,362606,ANI, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education,2021,31,362606,ANI, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2021,31,362606,ANI, +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,69,366250,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,69,366250,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7031,Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society,2022-04-06,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,CIERA Stories,Achievement,2021,37,602738,"• WTTW, Sept. 12, 2022", +7033,CIERA Astronomers Travel to Mexico to Install TolTEC Camera,2022-04-06,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,85,1573962,"• Space Daily, Aug. 15, 2022", +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars,CIERA Stories,Event,2021,85,1573962,"• Space Daily, Aug. 15, 2022", +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Exoplanets & The Solar System,CIERA Stories,Achievement,2021,85,1573962,"• Space Daily, Aug. 15, 2022", +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Exoplanets & The Solar System,CIERA Stories,Event,2021,85,1573962,"• Space Daily, Aug. 15, 2022", +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,External Press,Science,2021,,,, +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +7084,Erin Cox Awarded NSF MPS-Ascend Fellowship,2022-04-29,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7104,Tarraneh Eftekhari Named NASA Einstein Fellow,2022-05-03,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,Life & Death of Stars,CIERA Stories,Achievement,2021,1,1647928,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Event,2021,,,, +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Outreach,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Achievement,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories,Event,2021,17,279507,Cosmos Magazine, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories,Outreach,2021,17,279507,Cosmos Magazine, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,External Press,Event,2021,17,279507,Cosmos Magazine, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,External Press,Outreach,2021,17,279507,Cosmos Magazine, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,CIERA Stories,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,External Press,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,External Press,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2021,,,, +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,External Press,Science,2021,8,6315920,, +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,Northwestern Press,Science,2021,8,6315920,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Galaxies & Cosmology,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Life & Death of Stars,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Education,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Interdisciplinary,2021,,,, +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",2022-06-29,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,Black Holes & Dead Stars,Northwestern Press,Science,2021,64,98142,Cosmos Magazine, +7243,CIERA student's paper highlighted by NASA's SOFIA Science Center,2022-07-08,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,Life & Death of Stars,External Press,Science,2021,,,, +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,80,453892,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology,Northwestern Press,Science,2021,80,453892,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Life & Death of Stars,Northwestern Press,Achievement,2021,80,453892,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Life & Death of Stars,Northwestern Press,Science,2021,80,453892,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Black Holes & Dead Stars,Northwestern Press,Science,2021,88,19127,"CNET, Sky and Telescope", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,88,19127,"CNET, Sky and Telescope", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Life & Death of Stars,Northwestern Press,Science,2021,88,19127,"CNET, Sky and Telescope", +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,External Press,Science,2021,,,, +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars,Northwestern Press,Event,2021,,,, +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars,Northwestern Press,Science,2021,,,, +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Life & Death of Stars,Northwestern Press,Event,2021,,,, +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +7350,CIERA Postdocs Advance to New Positions,2022-09-14,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,CIERA Stories,Achievement,2022,0,,"• WTTW, Sept. 12, 2022", +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Exoplanets & The Solar System,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Life & Death of Stars,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Exoplanets & The Solar System,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Exoplanets & The Solar System,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Galaxies & Cosmology,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Galaxies & Cosmology,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Life & Death of Stars,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Life & Death of Stars,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2021,0,,"• Space Daily, Aug. 15, 2022", +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2021,0,,"• Space Daily, Aug. 15, 2022", +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Black Holes & Dead Stars,Northwestern Press,Science,2021,,,, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,External Press,Science,2021,,,, +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,Northwestern Press,Science,2021,,,, +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2021,0,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars,Northwestern Press,Science,2021,0,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Life & Death of Stars,Northwestern Press,Interdisciplinary,2021,0,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Life & Death of Stars,Northwestern Press,Science,2021,0,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Data Science & Computing,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Education,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Event,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Interdisciplinary,2022,,,, +7631,The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci,2022-10-13,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,CIERA Stories,Achievement,2022,38,152146598,MSN, +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event,2022,45,42292,ANI,As of 2023-05-09 +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,45,42292,ANI,As of 2023-05-09 +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars,External Press,Science,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Life & Death of Stars,External Press,Science,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,65,37683287,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,65,37683287,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7698,CIERA Hosts SEDM & ZTF,2022-11-04,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Education,2022,8,285271,Cosmos Magazine, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Event,2022,8,285271,Cosmos Magazine, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Achievement,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Event,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Outreach,2022,,,, +7711,What makes gamma-ray bursts blink on and off?,2022-11-08,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Life & Death of Stars,Northwestern Press,Achievement,2022,,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Education,2022,80,1020348026,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Event,2022,80,1020348026,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Interdisciplinary,2022,80,1020348026,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars,CIERA Stories,Event,2022,109,616199,"• WTTW, Sept. 12, 2022", +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,109,616199,"• WTTW, Sept. 12, 2022", +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Life & Death of Stars,CIERA Stories,Event,2022,109,616199,"• WTTW, Sept. 12, 2022", +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,109,616199,"• WTTW, Sept. 12, 2022", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,45,20295513,"• WTTW, Sept. 12, 2022", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,45,20295513,"• WTTW, Sept. 12, 2022", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Life & Death of Stars,External Press,Science,2022,45,20295513,"• WTTW, Sept. 12, 2022", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Life & Death of Stars,Northwestern Press,Science,2022,45,20295513,"• WTTW, Sept. 12, 2022", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Education,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Outreach,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Science,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,3,103829,ANI,As of 2023-05-09 +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,3,103829,ANI,As of 2023-05-09 +7894,Professor Dave Meyer retires after 35 years at Northwestern,2023-01-11,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,2,557659,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars,CIERA Stories,Education,2022,2,557659,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,2,557659,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,2,557659,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,CIERA Stories,Science,2022,,,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,External Press,Science,2022,,,, +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,External Press,Science,2022,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,Northwestern Press,Science,2022,0,,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Event,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Event,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Event,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,3,532364,"• Space Daily, Aug. 15, 2022",As of 2023-05-09 +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press,Outreach,2022,,,, +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press,Science,2022,,,, +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,Northwestern Press,Outreach,2022,,,, +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,Northwestern Press,Science,2022,,,, +8015,Graduate student's photos of green comet featured in major media outlets,2023-02-03,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,Galaxies & Cosmology,External Press,Outreach,2022,1,12661,,Included local evening news feature +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Event,2022,14,2349700,, +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,14,2349700,, +8056,CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award,2023-02-16,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,20,740861,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,External Press,Achievement,2022,,,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,Northwestern Press,Achievement,2022,,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,0,,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8131,Northwestern to host gravitational-wave researchers from around the globe,2023-03-08,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2022,,,, +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Event,2022,10,2857204,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,10,2857204,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +8166,International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA,2023-04-14,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Data Science & Computing,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Education,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Event,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Interdisciplinary,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,0,,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Achievement,2022,,,, +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Interdisciplinary,2022,,,, +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,External Press,Science,2022,20,68799244,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,Northwestern Press,Science,2022,20,68799244,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +8271,Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award,2023-04-28,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Black Holes & Dead Stars,Northwestern Press,Achievement,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Outreach,2022,,,, +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Event,2022,0,,"CNET, Sky and Telescope", +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Interdisciplinary,2022,0,,"CNET, Sky and Telescope", +8365,PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship,2023-06-07,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,46,559515569,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Life & Death of Stars,External Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Black Holes & Dead Stars,Northwestern Press,Science,2022,48,265049,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",Included local evening news feature +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,48,265049,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight",Included local evening news feature +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,22,13999,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2022,22,13999,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars,External Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars,External Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education,2022,79,1743640,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2022,79,1743640,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Education,2022,0,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Event,2022,0,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,0,,, diff --git a/data/raw_data/Visits_Report-Live.csv b/data/raw_data/Visits_Report-Live.csv new file mode 100644 index 0000000..4dca5e0 --- /dev/null +++ b/data/raw_data/Visits_Report-Live.csv @@ -0,0 +1,1615 @@ +id,Name,Visitor Institution,Post Date,Host,Content,Permalink,Start Date(Unix),End Date(Unix),Academic Year,Programs,FY,Start Date,End Date,Visiting Days,International,Host Type,HostTypeHelper,Duplicated Dates +9195,Ayanna Mann,Howard University,2/28/2024,Goni Halevi,,https://ciera.northwestern.edu/visits/ayanna-mann/,1715558400,1717804740,2024,,2024,5/13/2024,6/7/2024,26.99930556,0,,1, +9139,Tia Martineau,University of New Hampshire,1/30/2024,Goni Halevi,,https://ciera.northwestern.edu/visits/tia-martineau/,1715731200,1717286340,2024,,2024,5/15/2024,6/1/2024,18.99930556,0,,1, +9223,Pascale Garaud,"University of California, Santa Cruz",3/11/2024,Daniel Lecoanet,,https://ciera.northwestern.edu/visits/pascale-garaud-2/,1716854400,1716940740,2024,astrophysics-seminars,2024,5/28/2024,5/28/2024,1.999305556,0,,1, +9221,Marla Geha,Yale University,3/11/2024,Allison Strom,,https://ciera.northwestern.edu/visits/marla-geha-2/,1716249600,1716335940,2024,astrophysics-seminars,2024,5/21/2024,5/21/2024,1.999305556,0,,1, +9219,Chris Reynolds,University of Maryland,3/11/2024,Fred Rasio,,https://ciera.northwestern.edu/visits/chris-reynolds/,1715644800,1715731140,2024,astrophysics-seminars,2024,5/14/2024,5/14/2024,1.999305556,0,,1, +9217,Todd Thompson,Ohio State University,3/11/2024,Yoram Lithwick,,https://ciera.northwestern.edu/visits/todd-thompson-3/,1715040000,1715126340,2024,astrophysics-seminars,2024,5/7/2024,5/7/2024,1.999305556,0,,1, +9215,Scott Ransom,National Radio Astronomy Observatory,3/11/2024,Fred Rasio,,https://ciera.northwestern.edu/visits/scott-ransom-3/,1714435200,1714521540,2024,astrophysics-seminars,2024,4/30/2024,4/30/2024,1.999305556,0,,1, +9213,Diana Powell,University of Chicago,3/11/2024,Jason Wang,,https://ciera.northwestern.edu/visits/diana-powell-2/,1713830400,1713916740,2024,astrophysics-seminars,2024,4/23/2024,4/23/2024,1.999305556,0,,1, +9211,Ted Bergin,University of Michigan,3/11/2024,Jason Wang,,https://ciera.northwestern.edu/visits/ted-bergin/,1713225600,1713311940,2024,astrophysics-seminars,2024,4/16/2024,4/16/2024,1.999305556,0,,1, +9209,Jeff Cooke,Swinburne University of Technology,3/11/2024,Allison Strom,,https://ciera.northwestern.edu/visits/jeff-cooke/,1712880000,1712966340,2024,astrophysics-seminars|observational-astronomy-meetings,2024,4/12/2024,4/12/2024,1.999305556,1,,1, +9197,Vikram Dwarkadas,University of Chicago,2/28/2024,Kari Frank,,https://ciera.northwestern.edu/visits/vikram-dwarkadas-4/,1712793600,1712879940,2024,theory-group-meetings,2024,4/11/2024,4/11/2024,1.999305556,0,,1, +9207,Brant Robertson,"University of California, Santa Cruz",3/11/2024,Allison Strom,,https://ciera.northwestern.edu/visits/brant-robertson-2/,1712620800,1712707140,2024,astrophysics-seminars,2024,4/9/2024,4/9/2024,1.999305556,0,,1, +9205,Sean Ressler,CITA,3/11/2024,Lena Murchikova,,https://ciera.northwestern.edu/visits/sean-ressler-2/,1711411200,1711497540,2024,astrophysics-seminars,2024,3/26/2024,3/26/2024,1.999305556,1,,1, +9190,Rixin Li,UC Berkeley,2/28/2024,Jiaru Li,,https://ciera.northwestern.edu/visits/rixin-li/,1709683200,1710028740,2024,theory-group-meetings,2024,3/6/2024,3/9/2024,4.999305556,0,,1, +9052,Carl Fields,Los Alamos National Laboratory,1/8/2024,Adam Miller,,https://ciera.northwestern.edu/visits/carl-fields/,1709596800,1709683140,2024,astrophysics-seminars,2024,3/5/2024,3/5/2024,1.999305556,0,,1, +9199,Guangyi Zhang,Reed College,2/28/2024,Sharan Banagiri,,https://ciera.northwestern.edu/visits/guangyi-zhang/,1709078400,1709251140,2024,,2024,2/28/2024,2/29/2024,2.999305556,0,,1, +9050,Alex ?iprijanovi?,Fermi National Accelerator Laboratory,1/8/2024,Emma Alexander,,https://ciera.northwestern.edu/visits/alex-ciprijanovic/,1708992000,1709078340,2024,astrophysics-seminars,2024,2/27/2024,2/27/2024,1.999305556,0,,1, +9156,Greg Herczeg,Kavli Institute for Astronomy and Astrophysics at Peking University,2/12/2024,Meng Sun,,https://ciera.northwestern.edu/visits/greg-herczeg/,1708387200,1708473540,2024,astrophysics-seminars,2024,2/20/2024,2/20/2024,1.999305556,1,,1, +9154,Yannis Liodakis,Marshall Space Flight Center,2/12/2024,Charlie Kilpatrick,,https://ciera.northwestern.edu/visits/yannis-liodakis/,1708041600,1708127940,2024,observational-astronomy-meetings,2024,2/16/2024,2/16/2024,1.999305556,0,,1, +9159,Lluis Mas-Ribas,"University of California, Santa Cruz",2/14/2024,Guochao Jason Sun,,https://ciera.northwestern.edu/visits/lluis-mas-ribas/,1707350400,1707523140,2024,theory-group-meetings,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9160,Bridget Andersen,McGill University,2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/bridget-andersen/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,1,,1, +9162,Calvin Leung,"University of California, Berkeley",2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/calvin-leung/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9164,Kenzie Nimmo,Massachusetts Institute of Technology,2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/nimmo-kenzie/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9165,Kaitlyn Shin,Massachusetts Institute of Technology,2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/kaitlyn-shin/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9168,Lluis Mas-Ribas,"University of California, Santa Cruz",2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/lluis-mas-ribas-2/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9169,Lordrick Aloyce Kahinga,"University of California, Santa Cruz",2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/lordrick-aloyce-kahinga/,1707350400,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9171,Sunil Simha,"University of California, Santa Cruz",2/14/2024,CHIME/FRB Gemini LLP,,https://ciera.northwestern.edu/visits/sunil-simha/,,1707523140,2024,conferences,2024,2/8/2024,2/9/2024,2.999305556,0,,1, +9048,Jamie Rankin,Princeton University ,1/8/2024,Lena Murchikova,,https://ciera.northwestern.edu/visits/jamie-rankin/,1707177600,1707263940,2024,astrophysics-seminars,2024,2/6/2024,2/6/2024,1.999305556,1,,1, +9141,Cyndia Yu,"Kavli Institute for Cosmological Physics, University of Chicago",1/30/2024,Dennis Lee,,https://ciera.northwestern.edu/visits/cyndia-yu/,1706832000,1706918340,2024,observational-astronomy-meetings,2024,2/2/2024,2/2/2024,1.999305556,1,,1, +9046,Jessie Dotson,NASA,1/8/2024,Giles Novak,,https://ciera.northwestern.edu/visits/jessie-dotson/,1706572800,1706659140,2024,astrophysics-seminars,2024,1/30/2024,1/30/2024,1.999305556,0,Astro Faculty,1,1 +9088,Melinda Soares-Furtado,University of Wisconsin-Madison,1/18/2024,Goni Halevi,,https://ciera.northwestern.edu/visits/melinda-soares-furtado-3/,1706140800,1706313540,2024,theory-group-meetings,2024,1/25/2024,1/26/2024,2.999305556,0,Astro Faculty,0,1 +9075,Bhagya Subrayan,Purdue University,1/16/2024,Charlie Kilpatrick,,https://ciera.northwestern.edu/visits/bhagya-subrayan/,1706227200,1706313540,2024,observational-astronomy-meetings,2024,1/26/2024,1/26/2024,1.999305556,0,Astro Faculty,0,1 +9044,Quinn Konopacky,"University of California, San Diego",1/8/2024,Jason Wang ,,https://ciera.northwestern.edu/visits/quinn-konopacky-2/,1705968000,1706054340,2024,astrophysics-seminars,2024,1/23/2024,1/23/2024,1.999305556,0,Astro Faculty,0,1 +9068,Yesukhei Jagvaral,Carnegie Mellon University,1/12/2024,Lena Murchikova,,https://ciera.northwestern.edu/visits/yesukhei-jagvaral/,1705449600,1705708740,2024,theory-group-meetings,2024,1/17/2024,1/19/2024,3.999305556,0,Astro Faculty,0,4 +9078,David Sand,University of Arizona,1/16/2024,SAGUARO Meeting,,https://ciera.northwestern.edu/visits/david-sand/,1705449600,1705622340,2024,,2024,1/17/2024,1/18/2024,2.999305556,0,Astro Faculty,0,4 +9079,Manisha Shrestha,University of Arizona,1/16/2024,SAGUARO Meeting,,https://ciera.northwestern.edu/visits/manisha-shrestha/,1705449600,1705622340,2024,,2024,1/17/2024,1/18/2024,2.999305556,0,Astro Faculty,0,4 +9080,Griffin Hosseinzadeh,University of Arizona,1/16/2024,SAGUARO Meeting,,https://ciera.northwestern.edu/visits/griffin-hosseinzadeh/,1705449600,1705622340,2024,,2024,1/17/2024,1/18/2024,2.999305556,0,Astro Faculty,0,4 +9042,Nahum Arav,Virginia Tech,1/8/2024,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/nahum-arav/,1705363200,1705449540,2024,astrophysics-seminars,2024,1/16/2024,1/16/2024,1.999305556,1,Astro Faculty,0,1 +9054,Lily Zhao,Center for Computational Astrophysics,1/9/2024,Adam Miller,,https://ciera.northwestern.edu/visits/lily-zhao/,1705017600,1705103940,2024,observational-astronomy-meetings,2024,1/12/2024,1/12/2024,1.999305556,1,Astro Faculty,0,1 +9040,Harley Katz,University of Chicago,1/8/2024,Allison Strom,,https://ciera.northwestern.edu/visits/harley-katz/,1704758400,1704844740,2024,astrophysics-seminars,2024,1/9/2024,1/9/2024,1.999305556,0,Astro Faculty,0,1 +9065,Alexander Ji,University of Chicago,1/11/2024,R Process Element Meeting,,https://ciera.northwestern.edu/visits/alexander-ji-2/,1702944000,1703030340,2024,,2024,12/19/2023,12/19/2023,1.999305556,0,Astro Faculty,0,3 +9066,Thomas Callister,University of Chicago,1/11/2024,R Process Element Meeting,,https://ciera.northwestern.edu/visits/thomas-callister/,1702944000,1703030340,2024,,2024,12/19/2023,12/19/2023,1.999305556,0,Staff,1,3 +9067,Kaley Brauer,University of Chicago,1/11/2024,R Process Element Meeting,,https://ciera.northwestern.edu/visits/kaley-brauer/,1702944000,1703030340,2024,,2024,12/19/2023,12/19/2023,1.999305556,0,Astro Faculty,0,3 +8981,Veronica Dike,"University of Illinois, Urbana-Champaign",11/28/2023,Sanaea Cooper Rose,,https://ciera.northwestern.edu/visits/veronica-dike/,1701907200,1702079940,2023,,2024,12/7/2023,12/8/2023,2.999305556,0,Postdoc,1,1 +8871,Melinda Soares-Furtado,University of Wisconsin-Madison,10/30/2023,Goni Halevi,,https://ciera.northwestern.edu/visits/melinda-soares-furtado-2/,1701302400,1701475140,2023,theory-group-meetings,2024,11/30/2023,12/1/2023,2.999305556,0,Postdoc,0,1 +8972,Andrea Antoni,UC Berkeley,11/21/2023,Ariadna Murguia,,https://ciera.northwestern.edu/visits/andrea-antoni-2/,1701216000,1701388800,2023,theory-group-meetings,2024,11/29/2023,12/1/2023,3,0,Astro Faculty,0,2 +8979,Qinan Wang,Johns Hopkins University,11/26/2023,Charlie Kilpatrick,,https://ciera.northwestern.edu/visits/qinan-wang/,1701043200,1701302340,2023,observational-astronomy-meetings,2024,11/27/2023,11/29/2023,3.999305556,0,Group Meeting,1,1 +8792,Mandy Chen,University of Chicago,10/23/2023,Allison Strom,,https://ciera.northwestern.edu/visits/mandy-chen/,1701216000,1701302340,2023,,2024,11/29/2023,11/29/2023,1.999305556,0,Grad Student,1,2 +8743,Natasha Batalha,NASA,10/10/2023,Allison Strom,,https://ciera.northwestern.edu/visits/natasha-batalha/,1701129600,1701215940,2023,astrophysics-seminars,2024,11/28/2023,11/28/2023,1.999305556,0,Group Meeting,0,1 +8904,Alisa Galishnikova,Princeton University ,11/7/2023,,,https://ciera.northwestern.edu/visits/alisa-galishnikova/,1699833600,1700179140,2023,theory-group-meetings,2024,11/13/2023,11/16/2023,4.999305556,1,Astro Faculty,0,3 +8932,Danielle Frostig,Massachusetts Institute of Technology,11/10/2023,Adam Miller,,https://ciera.northwestern.edu/visits/danielle-frostig/,1700006400,1700179140,2023,observational-astronomy-meetings,2024,11/15/2023,11/16/2023,2.999305556,0,Group Meeting,0,2 +8906,Eltha Yu-Hsuan Teng,"University of California, San Diego",11/7/2023,Allison Strom,,https://ciera.northwestern.edu/visits/eltha-yu-hsuan-teng/,1700006400,1700092740,2023,,2024,11/15/2023,11/15/2023,1.999305556,0,Group Meeting,0,2 +8896,Subo Dong,Peking University ,11/2/2023,Yoram Lithwick,,https://ciera.northwestern.edu/visits/subo-dong/,1699833600,1700006340,2023,special-astronomy-seminars,2024,11/13/2023,11/14/2023,2.999305556,1,Astro Faculty,0,3 +8741,Rob Simcoe,Massachusetts Institute of Technology,10/10/2023,Allison Strom,,https://ciera.northwestern.edu/visits/rob-simcoe/,1699920000,1700006340,2023,astrophysics-seminars,2024,11/14/2023,11/14/2023,1.999305556,0,Astro Faculty,0,2 +8980,Janosz Dewberry,Canadian Institute for Theoretical Astrophysics,11/26/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/janosz-dewberry-5/,1699920000,1700006340,2023,,2024,11/14/2023,11/14/2023,1.999305556,1,Group Meeting,0,2 +8747,Nianyi Chen,Carnegie Mellon University,10/10/2023,,,https://ciera.northwestern.edu/visits/nianyi-chen/,1699833600,1699919940,2023,special-astronomy-seminars,2024,11/13/2023,11/13/2023,1.999305556,0,Astro Faculty,0,3 +8898,Viraj Pandya,Columbia University,11/2/2023,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/viraj-pandya/,1699488000,1699574340,2023,theory-group-meetings,2024,11/9/2023,11/9/2023,1.999305556,0,Group Meeting,0,2 +8908,Janosz Dewberry,Canadian Institute for Theoretical Astrophysics,11/7/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/janosz-dewberry-4/,1699488000,1699574340,2023,,2024,11/9/2023,11/9/2023,1.999305556,1,Group Meeting,0,2 +8739,Diana Powell,University of Chicago,10/10/2023,Jason Wang ,,https://ciera.northwestern.edu/visits/diana-powell/,1699315200,1699401540,2023,astrophysics-seminars,2024,11/7/2023,11/7/2023,1.999305556,0,Group Meeting,0,1 +8863,Navin Sridhar,Columbia University,10/27/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/navin-sridhar/,1698710400,1699055940,2023,theory-group-meetings,2024,10/31/2023,11/3/2023,4.999305556,0,Group Meeting,0,3 +8877,Linhao Ma,Caltech,10/31/2023,Meng Sun,,https://ciera.northwestern.edu/visits/linhao-ma/,1698796800,1699055940,2023,theory-group-meetings,2024,11/1/2023,11/3/2023,3.999305556,0,Group Meeting,0,3 +8861,Shreya Anand,Caltech,10/27/2023,Wen-fai Fong,,https://ciera.northwestern.edu/visits/shreya-anand/,1698796800,1698883200,2023,observational-astronomy-meetings,2024,11/1/2023,11/2/2023,2,0,Group Meeting,0,3 +8893,Wynn Jacobson-Galan,"University of California, Berkeley",11/2/2023,Charlie Kilpatrick,,https://ciera.northwestern.edu/visits/wynn-jacobson-galan/,1698796800,1698883140,2023,observational-astronomy-meetings,2024,11/1/2023,11/1/2023,1.999305556,0,Group Meeting,0,3 +8737,Keith Hawkins,"University of Texas, Austin",10/9/2023,Allison Strom,,https://ciera.northwestern.edu/visits/keith-hawkins-2/,1698710400,1698796740,2023,astrophysics-seminars,2024,10/31/2023,10/31/2023,1.999305556,0,Astro Faculty,0,3 +8892,Colm Talbot,University of Chicago,10/31/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/colm-talbot-2/,1698710400,1698796740,2023,,2024,10/31/2023,10/31/2023,1.999305556,0,Group Meeting,0,3 +8869,Soham Mandal,Purdue University,10/30/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/soham-mandal/,1698278400,1698451140,2023,special-astronomy-seminars,2024,10/26/2023,10/27/2023,2.999305556,0,Astro Faculty,0,1 +8873,Akshara Viswanathan,University of Groningen,10/30/2023,Tjitske Starkenburg,,https://ciera.northwestern.edu/visits/akshara-viswanathan/,1698364800,1698451140,2023,,2024,10/27/2023,10/27/2023,1.999305556,1,Astro Faculty,0,1 +8540,Ronaldo Laishram,Tohoku University,8/10/2023,Allison Strom,,https://ciera.northwestern.edu/visits/ronaldo-laishram/,1696118400,1698278400,2024,,2024,10/1/2023,10/26/2023,26,1,Grad Student,0,1 +8735,Ashley Villar,Harvard University,10/9/2023,Tarraneh Eftekhari,,https://ciera.northwestern.edu/visits/ashley-villar-2/,1698105600,1698191940,2023,astrophysics-seminars,2024,10/24/2023,10/24/2023,1.999305556,0,Astro Faculty,0,1 +8798,Alexander Criswell,University of Minnesota,10/23/2023,Sharan Banagiri,,https://ciera.northwestern.edu/visits/alexander-criswell/,1697673600,1697846340,2023,,2024,10/19/2023,10/20/2023,2.999305556,0,Astro Faculty,0,1 +8745,Floor Brekgaarden,Columbia University,10/10/2023,,,https://ciera.northwestern.edu/visits/floor-brekgaarden/,1697414400,1697587140,2023,special-astronomy-seminars,2024,10/16/2023,10/17/2023,2.999305556,0,Astro Faculty,0,1 +8733,DJ Pasham,Massachusetts Institute of Technology,10/9/2023,Lena Murchikova,,https://ciera.northwestern.edu/visits/dj-pasham/,1697500800,1697587140,2023,astrophysics-seminars,2024,10/17/2023,10/17/2023,1.999305556,0,Astro Faculty,0,1 +8730,Pablo Laguna,"University of Texas, Austin",10/9/2023,Fred Rasio ,,https://ciera.northwestern.edu/visits/pablo-laguna-2/,1696896000,1696982340,2023,astrophysics-seminars,2024,10/10/2023,10/10/2023,1.999305556,0,Astro Faculty,0,1 +8749,Leah Jenks,University of Chicago,10/10/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/leah-jenks/,1696809600,1696895940,2023,special-astronomy-seminars,2024,10/9/2023,10/9/2023,1.999305556,0,Astro Faculty,0,1 +8751,Amy Secunda,Princeton University ,10/10/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/amy-secunda/,1696377600,1696636740,2023,theory-group-meetings,2024,10/4/2023,10/6/2023,3.999305556,1,Astro Faculty,0,2 +8754,Marcia Bartusiak,Massachusetts Institute of Technology,10/10/2023,,,https://ciera.northwestern.edu/visits/marcia-bartusiak/,1696464000,1696550340,2023,ciera-annual-public-lectures,2024,10/5/2023,10/5/2023,1.999305556,0,Astro Faculty,0,1 +8757,Annalisa Citro,University of Minnesota,10/10/2023,,,https://ciera.northwestern.edu/visits/annalisa-citro/,1696377600,1696463940,2023,observational-astronomy-meetings,2024,10/4/2023,10/4/2023,1.999305556,0,Astro Faculty,0,2 +8729,Daniel Stark,University of Arizona,10/9/2023,Allison Strom,,https://ciera.northwestern.edu/visits/daniel-stark-2/,1696291200,1696377540,2023,astrophysics-seminars,2024,10/3/2023,10/3/2023,1.999305556,0,Grad Student,0,1 +8879,Kevin Crowston,Syracuse University,10/31/2023,,,https://ciera.northwestern.edu/visits/kevin-crowston-6/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8880,Corey Jackson,"University of Wisconsin, Madison",10/31/2023,,,https://ciera.northwestern.edu/visits/corey-jackson-4/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8881,Derek Davis,California Institute of Technology,10/31/2023,,,https://ciera.northwestern.edu/visits/derek-davis-4/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8883,Alexander Owen Smith,Syracuse University,10/31/2023,,,https://ciera.northwestern.edu/visits/alexander-owen-smith/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8885,Marlene Takou-Ayaoh,Syracuse University,10/31/2023,,,https://ciera.northwestern.edu/visits/marlene-takou-ayaoh-2/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8886,Carsten Oesterlund,Syracuse University,10/31/2023,,,https://ciera.northwestern.edu/visits/carsten-oesterlund-4/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Grad Student,0,9 +8888,Mike Zevin,Adler Planetarium,10/31/2023,,,https://ciera.northwestern.edu/visits/mike-zevin-4/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8889,Ryan Fisher,Christopher Newport University,10/31/2023,,,https://ciera.northwestern.edu/visits/ryan-fisher/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8891,Sean McEachin,Christopher Newport University,10/31/2023,,,https://ciera.northwestern.edu/visits/sean-mceachin/,1695945600,1696118340,2023,gravityspy,2024,9/29/2023,9/30/2023,2.999305556,0,Astro Faculty,0,9 +8755,Samantha Wu,Caltech,10/10/2023,,,https://ciera.northwestern.edu/visits/samantha-wu/,1695859200,1696031940,2023,theory-group-meetings,2024,9/28/2023,9/29/2023,2.999305556,0,Postdoc,0,1 +8726,Chris Hamilton,Institute for Advanced Study ,10/9/2023,Allison Strom,,https://ciera.northwestern.edu/visits/chris-hamilton/,1695686400,1695772740,2023,astrophysics-seminars,2024,9/26/2023,9/26/2023,1.999305556,1,Astro Faculty,0,1 +8538,Travis Rector,"University of Alaska, Anchorage",8/10/2023,Allison Strom,,https://ciera.northwestern.edu/visits/travis-rector/,1694995200,1694995200,2023,,2024,9/18/2023,9/18/2023,1,0,Astro Faculty,0,1 +8542,Christopher Irwin,University Of Tokyo,8/10/2023,Giacomo Fragione,,https://ciera.northwestern.edu/visits/christopher-irwin-2/,1694390400,1694736000,2023,special-astronomy-seminars,2024,9/11/2023,9/15/2023,5,1,Astro Faculty,0,1 +8551,Shivani Bhandari,ASTRON,8/10/2023,Tarraneh Eftekhari,,https://ciera.northwestern.edu/visits/shivani-bhandari/,1693872000,1694131200,2023,special-astronomy-seminars,2024,9/5/2023,9/8/2023,4,1,Postdoc,0,2 +8547,Debatri Chattopadhyay,Cardiff University,8/10/2023,Sharan Banagiri,,https://ciera.northwestern.edu/visits/debatri-chattopadhyay/,1693872000,1693872000,2023,special-astronomy-seminars,2024,9/5/2023,9/5/2023,1,1,Astro Faculty,0,2 +7683,Peter Nugent,Lawrence Berkeley National Laboratory,10/30/2022,Adam Miller,,https://ciera.northwestern.edu/visits/peter-nugent-3/,1661990400,1693440000,2022,,2023,9/1/2022,8/31/2023,365,0,Astro Faculty,1,1 +8549,Lucy McNeill,Kyoto University,8/10/2023,Camille Liotine,,https://ciera.northwestern.edu/visits/lucy-mcneill-2/,1692316800,1692316800,2023,,2023,8/18/2023,8/18/2023,1,1,Postdoc,1,1 +8794,Chris Lintott,University of Oxford,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/chris-lintott/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,1,,1,22 +8796,Mary Westwood,University of Oxford,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/mary-westwood/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,1,,1,22 +8800,Brooke Simmons,Lancaster University,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/brooke-simmons/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,1,,1,22 +8802,Coleman Krawczyk,University of Portsmouth,10/23/2023,Zooniverse,t,https://ciera.northwestern.edu/visits/coleman-krawczyk/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,,1,22 +8804,Adam McMaster,Open University,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/adam-mcmaster/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,1,,1,22 +8806,Lucy Fortson,University of Minnesota,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/lucy-fortson-2/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,,1,22 +8808,Hayley Roberts,University of Minnesota,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/hayley-roberts/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,,1,22 +8810,Sarah Huebner,University of Minnesota,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/sarah-huebner/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,,1,22 +8812,Kameswara Mantha,University of Minnesota,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/kameswara-mantha/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8814,Ramana Sankar,University of Minnesota,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/ramana-sankar/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8816,Laura Trouille,Adler Planetarium/Zooniverse,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/laura-trouille-5/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8818,Mark Bouslog,Adler Planetarium/Zooniverse,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/mark-bouslog/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8820,Sam Blickhan,Adler Planetarium/Zooniverse,10/23/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/sam-blickhan/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Other Faculty,1,22 +8830,Delilah Clement,Adler Planetarium,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/delilah-clement/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,,1,22 +8832,Michelle Yuen,Adler Planetarium/Zooniverse,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/michelle-yuen/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8834,Sean Miller,Adler Planetarium/Zooniverse,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/sean-miller/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Grad Student,1,22 +8836,Keanu Glover,Adler Planetarium/Zooniverse,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/keanu-glover/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Postdoc,0,22 +8838,Mike Zevin,Adler Planetarium,10/24/2023,Zooniverse,,https://ciera.northwestern.edu/visits/mike-zevin-3/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Postdoc,0,22 +8839,Meredith Stepien,Adler Planetarium,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/meredith-stepien/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Grad Student,0,22 +8841,Jim O'Donnell,University of Oxford,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/jim-odonnell/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,1,Astro Faculty,0,22 +8843,Travis Kiefer,University of Minnesota,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/travis-kiefer/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Postdoc,0,22 +8845,Zach Wolfenbarger,Adler Planetarium,10/24/2023,Zooniverse ,,https://ciera.northwestern.edu/visits/zach-wolfenbarger/,1691971200,1692143940,2023,,2023,8/14/2023,8/15/2023,2.999305556,0,Astro Faculty,0,22 +8545,Sashwat Tanay,University of Mississippi,8/10/2023,Vishal Baibhav,,https://ciera.northwestern.edu/visits/sashwat-tanay/,1690329600,1690416000,2023,special-astronomy-seminars,2023,7/26/2023,7/27/2023,2,0,,1,2 +8543,Quynh Lan Nguyen,University of Notre Dame,8/10/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/quynh-lan-nguyen/,1690329600,1690329600,2023,,2023,7/26/2023,7/26/2023,1,0,,1,2 +8461,Kerry Paterson,Max Plank Institute for Astronomy,1/1/1970,Genevieve Schroeder,,https://ciera.northwestern.edu/?post_type=ciera_visit&p=8461,1688947200,1689379140,2023,special-astronomy-seminars,2023,7/10/2023,7/14/2023,5.999305556,1,,1,2 +8537,Kerry Paterson,Max Plank Institute for Astronomy,8/10/2023,Wen-Fai Fong,,https://ciera.northwestern.edu/visits/kerry-paterson/,1688947200,1689206400,2023,special-astronomy-seminars,2023,7/10/2023,7/13/2023,4,1,,1,2 +8534,Dave Coulter,"University of California, Santa Cruz",8/10/2023,Charlie Kilpatrick,,https://ciera.northwestern.edu/visits/dave-coulter/,1687478400,1688083200,2023,,2023,6/23/2023,6/30/2023,8,0,,1,3 +8536,Daniel DeFelippis,University of Paris-Saclay,8/10/2023,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/daniel-defelippis/,1688083200,1688083200,2023,,2023,6/30/2023,6/30/2023,1,1,,1,1 +8313,Dillon Dong,National Radio Astronomy Observatory,5/18/2023,Genevieve Schroeder,,https://ciera.northwestern.edu/visits/dillon-dong/,1687478400,1687564740,2023,,2023,6/23/2023,6/23/2023,1.999305556,0,,1,3 +8382,Chris (Yuan Qi) Ni,University of Toronto ,6/6/2023,Kyle Rocha ,,https://ciera.northwestern.edu/visits/chris-yuan-qi-ni/,1687478400,1687564740,2023,special-astronomy-seminars,2023,6/23/2023,6/23/2023,1.999305556,1,,1,3 +8533,Bindesh Tripathi,"University of Wisconsin, Madison",8/10/2023,Daniel Lecoanet,,https://ciera.northwestern.edu/visits/bindesh-tripathi/,1686182400,1686355140,2023,,2023,6/8/2023,6/9/2023,2.999305556,0,,1,1 +7671,Enrico Ramirez-Ruiz,"University of California, Santa Cruz",10/25/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/enrico-ramirez-ruiz-6/,1685404800,1685491140,2023,astrophysics-seminars,2023,5/30/2023,5/30/2023,1.999305556,0,,1,1 +8282,Zhuyun Zhuang,California Institute of Technology,5/3/2023,Allison Strom,,https://ciera.northwestern.edu/visits/zhuyun-zhuang/,1684108800,1684799940,2023,observational-astronomy-meetings,2023,5/15/2023,5/22/2023,8.999305556,0,,1,3 +8302,Harry Kraemer,Kellogg School of Management,5/15/2023,,,https://ciera.northwestern.edu/visits/harry-kraemer/,1684713600,1684799940,2023,ciera-connections,2023,5/22/2023,5/22/2023,1.999305556,1,,1,1 +8221,Janosz Dewberry,CITA,4/19/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/janosz-dewberry-3/,1684108800,1684454340,2023,special-astronomy-seminars,2023,5/15/2023,5/18/2023,4.999305556,1,,1,3 +8291,Mia de los Reyes,Standford,5/10/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/mia-de-los-reyes-3/,1684108800,1684454340,2022,observational-astronomy-meetings,2023,5/15/2023,5/18/2023,4.999305556,1,,1,3 +8099,Nia Imara,"University of California, Santa Cruz",3/3/2023,Vicky Kalogera,,https://ciera.northwestern.edu/visits/nia-imara-2/,1684368000,1684454340,2023,interdisciplinary-colloquia,2023,5/18/2023,5/18/2023,1.999305556,0,,1,1 +7541,Misty C. Bentz,Georgia State University,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/misty-c-bentz/,1684195200,1684281540,2023,astrophysics-seminars,2023,5/16/2023,5/16/2023,1.999305556,0,,1,1 +8191,Paul Draghis,University of Michigan,4/17/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/paul-draghis/,1683676800,1684022340,2023,theory-group-meetings,2023,5/10/2023,5/13/2023,4.999305556,0,,1,1 +7540,Tamara Bogdanovic,Georgia Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/tamara-bogdanovic-2/,1683590400,1683676740,2023,astrophysics-seminars,2023,5/9/2023,5/9/2023,1.999305556,0,,1,1 +8284,Jordy Daveelar,Columbia University / Flatiron Institute,5/3/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/jordy-daveelar/,1682899200,1683331140,2023,theory-group-meetings,2023,5/1/2023,5/5/2023,5.999305556,0,,1,2 +8286,Sophie Koudmani,Flatiron Institute,5/3/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/sophie-koudmani/,1682899200,1683331140,2023,theory-group-meetings,2023,5/1/2023,5/5/2023,5.999305556,0,,1,2 +7539,Kaitlin Kratter,University of Arizona,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/kaitlin-kratter-2/,1682985600,1683071940,2023,astrophysics-seminars,2023,5/2/2023,5/2/2023,1.999305556,0,,1,1 +8220,Mike Zevin,University of Chicago,4/19/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/mike-zevin/,1682380800,1682553540,2023,,2023,4/25/2023,4/26/2023,2.999305556,0,,1,2 +7538,Brian Metzger,Columbia University,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/brian-metzger-2/,1682380800,1682467140,2023,astrophysics-seminars,2023,4/25/2023,4/25/2023,1.999305556,0,,1,2 +8195,Vladimir Strokov,Johns Hopkins University,4/17/2023,Giacomo Fragione,,https://ciera.northwestern.edu/visits/vladimir-strokov-2/,1681776000,1682121540,2023,theory-group-meetings,2023,4/18/2023,4/21/2023,4.999305556,0,Postdoc,0,2 +8242,Lev Arzamasskiy,Institute for Advanced Study,4/24/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/lev-arzamasskiy/,1682035200,1682121540,2023,,2023,4/21/2023,4/21/2023,1.999305556,0,,1,1 +8114,Shrobana Ghosh,Albert Einstein Institute,3/21/2023,Vishal Baibhav,,https://ciera.northwestern.edu/visits/shrobana-ghosh/,1679011200,1681948800,2023,,2023,3/17/2023,4/20/2023,35,1,Astro Faculty,0,2 +7536,Amy Reines,Montana State University,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/amy-reines-2/,1681776000,1681862340,2023,astrophysics-seminars,2023,4/18/2023,4/18/2023,1.999305556,0,,1,2 +8193,Haocheng Zhang,NASA Goddard,4/17/2023,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/haocheng-zhang/,1681257600,1681603140,2023,theory-group-meetings,2023,4/12/2023,4/15/2023,4.999305556,0,Astro Faculty,0,1 +8107,Christopher Berry,University of Glasgow,3/21/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/christopher-berry/,1678838400,1681430400,2023,theory-group-meetings,2023,3/15/2023,4/14/2023,31,1,Postdoc,0,1 +8150,Sarah Blunt,Caltech,4/4/2023,Jason Wang,,https://ciera.northwestern.edu/visits/sarah-blunt/,1681084800,1681430340,2023,observational-astronomy-meetings,2023,4/10/2023,4/13/2023,4.999305556,0,Postdoc,0,2 +8098,Tyson Littenburg,NASA Marshall Space Flight Center,3/3/2023,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tyson-littenburg/,1681344000,1681430340,2023,interdisciplinary-colloquia,2023,4/13/2023,4/13/2023,1.999305556,0,Astro Faculty,0,1 +7597,Greg Bryan,Columbia University,10/4/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/greg-bryan/,1681171200,1681257540,2023,astrophysics-seminars,2023,4/11/2023,4/11/2023,1.999305556,0,Grad Student,0,2 +8194,Maya Fishbach,Canadian Institute for Theoretical Astrophysics,4/17/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/maya-fishbach-4/,1681171200,1681257540,2023,,2023,4/11/2023,4/11/2023,1.999305556,1,Grad Student,0,2 +8120,Ben Nelson,Chan Zuckerberg Initiative,3/24/2023,Peter Anglada,,https://ciera.northwestern.edu/visits/ben-nelson/,1681084800,1681171140,2023,ciera-connections,2023,4/10/2023,4/10/2023,1.999305556,0,Astro Faculty,0,2 +7962,David Kaplan,University of Wisconsin-Milwaukee,1/20/2023,Giacomo Fragione,,https://ciera.northwestern.edu/visits/david-kaplan-3/,1680566400,1680652740,2023,astrophysics-seminars,2023,4/4/2023,4/4/2023,1.999305556,1,Astro Faculty,0,1 +8112,Teagan Clarke,Monash University,3/21/2023,Elizabeth Teng,,https://ciera.northwestern.edu/visits/teagan-clarke/,1678665600,1680220800,2023,,2023,3/13/2023,3/31/2023,19,1,Postdoc,0,1 +8096,David Bercovici,Yale University,3/3/2023,Elvira Mulyukova,,https://ciera.northwestern.edu/visits/david-bercovici/,1680134400,1680220740,2023,interdisciplinary-colloquia,2023,3/30/2023,3/30/2023,1.999305556,0,Astro Faculty,0,1 +8108,Charlie Hoy,University of Portsmouth,3/21/2023,Vishal Baibhav,,https://ciera.northwestern.edu/visits/charlie-hoy/,1679011200,1679356800,2023,,2023,3/17/2023,3/21/2023,5,0,Astro Faculty,0,2 +8110,Isobel Romero-Shaw,University of Cambridge,3/21/2023,Camille Liotine,,https://ciera.northwestern.edu/visits/isobel-romero-shaw/,1678147200,1678492800,2023,theory-group-meetings,2023,3/7/2023,3/11/2023,5,1,Postdoc,0,2 +7534,Evan Kirby,University of Notre Dame,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/evan-kirby/,1678147200,1678233540,2023,astrophysics-seminars,2023,3/7/2023,3/7/2023,1.999305556,0,Postdoc,0,2 +7960,Kevin Hainline,University of Arizona,1/20/2023,Giacomo Fragione,,https://ciera.northwestern.edu/visits/kevin-hainline/,1677542400,1677628740,2023,astrophysics-seminars,2023,2/28/2023,2/28/2023,1.999305556,0,Postdoc,0,1 +8264,Siddharth Soni,Massachusetts Institute of Technology,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/siddharth-soni-2/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,Astro Faculty,0,6 +8265,Derek Davis,California Institute of Technology,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/derek-davis-3/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,,1,6 +8266,Jane Glanzer,Louisiana State University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/jane-glanzer/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,,1,6 +8267,Marissa Walker,Christopher Newport University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/marissa-walker-2/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,Grad Student,0,6 +8268,Kevin Crowston,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/kevin-crowston-5/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,Postdoc,0,6 +8269,Carsten �sterlund,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/carsten-osterlund-2/,1677456000,1677542340,2023,,2023,2/27/2023,2/27/2023,1.999305556,0,Postdoc,0,6 +7963,Edwin Kite,University of Chicago,1/20/2023,Hooman Mohseni,,https://ciera.northwestern.edu/visits/edwin-kites/,1676937600,1677023940,2022,interdisciplinary-colloquia,2023,2/21/2023,2/21/2023,1.999305556,0,Astro Faculty,0,1 +7533,Gongjie Li,Georgia Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/gongjie-li-2/,1676332800,1676419140,2023,astrophysics-seminars,2023,2/14/2023,2/14/2023,1.999305556,0,Astro Faculty,0,1 +8002,Konstantinos Kritos,Johns Hopkins University ,2/1/2023,Giacomo Fragione,,https://ciera.northwestern.edu/visits/konstantinos-kritos/,1675555200,1676159940,2023,theory-group-meetings,2023,2/5/2023,2/11/2023,7.999305556,0,,1,1 +7529,Meredith MacGregor,"University of Colorado, Boulder",9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/meredith-macgregor/,1675728000,1675814340,2023,astrophysics-seminars,2023,2/7/2023,2/7/2023,1.999305556,0,Astro Faculty,0,1 +7526,Marcelle Soares-Santos,University of Michigan,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/marcelle-soares-santos/,1675123200,1675209540,2023,astrophysics-seminars,2023,1/31/2023,1/31/2023,1.999305556,0,,1,2 +7990,Rahul Sengar,"University of Wisconsin, Milwaukee",1/27/2023,Cliff Johnson,,https://ciera.northwestern.edu/visits/rahul-sengar/,1675123200,1675209540,2023,,2023,1/31/2023,1/31/2023,1.999305556,0,Astro Faculty,0,2 +8256,Marissa Walker,Christopher Newport University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/marissa-walker/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8257,Kevin Crowston,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/kevin-crowston-4/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8258,Carsten �sterlund,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/carsten-osterlund/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8259,Isabella Lena Corieri,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/isabella-lena-corieri/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8260,Marlene Takou-Ayaoh,Syracuse University,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/marlene-takou-ayaoh/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8261,Corey Jackson,"University of California, Berkeley",4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/corey-jackson-3/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8262,Mike Zevin,University of Chicago,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/mike-zevin-2/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,0,,1,8 +8263,Christopher Berry,University of Glasgow,4/26/2023,GravitySpy (Sharan Banagiri),,https://ciera.northwestern.edu/visits/christopher-berry-2/,1675036800,1675123140,2023,,2023,1/30/2023,1/30/2023,1.999305556,1,,1,8 +7508,Jessica Lu,"University of California, Berkeley",9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/jessica-lu/,1674518400,1674604740,2023,astrophysics-seminars,2023,1/24/2023,1/24/2023,1.999305556,0,Astro Faculty,0,1 +7943,Colm Talbot,Massachusetts Institute of Technology,1/17/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/colm-talbot/,1674086400,1674259140,2022,,2023,1/19/2023,1/20/2023,2.999305556,0,,1,1 +7850,Bruce Edelman,University of Oregon,1/4/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/bruce-edelman/,1673481600,1674086340,2023,theory-group-meetings,2023,1/12/2023,1/18/2023,7.999305556,1,,1,1 +7507,Katerina Chatziioannou,California Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/katerina-chatziioannou-2/,1673913600,1673999940,2023,astrophysics-seminars,2023,1/17/2023,1/17/2023,1.999305556,0,,1,1 +7856,Janosz Dewberry,Canadian Institute for Theoretical Astrophysics,1/4/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/janosz-dewberry-2/,1672790400,1673049540,2023,,2023,1/4/2023,1/6/2023,3.999305556,1,,1,2 +7847,Hsiao-Wen Chen,University of Chicago,1/4/2023,Allison Strom,,https://ciera.northwestern.edu/visits/hsiao-wen-chen-2/,1672963200,1673049540,2023,,2023,1/6/2023,1/6/2023,1.999305556,0,Astro Faculty,0,1 +7853,Mia de los Reyes,Stanford University ,1/4/2023,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/mia-de-los-reyes-2/,1672790400,1672876740,2023,,2023,1/4/2023,1/4/2023,1.999305556,0,,1,2 +7506,Ue-Li Pen,CITA; University of Toronto,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/ue-li-pen/,1669680000,1669766340,2023,astrophysics-seminars,2023,11/29/2022,11/29/2022,1.999305556,1,Astro Faculty,0,1 +7483,Fabio Pacucci,Harvard University,9/21/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/fabio-pacucci-2/,1668556800,1668815940,2023,theory-group-meetings,2023,11/16/2022,11/18/2022,3.999305556,0,Astro Faculty,0,1 +7503,Salvatore Vitale,Massachusetts Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/salvatore-vitale/,1668470400,1668556740,2023,astrophysics-seminars,2023,11/15/2022,11/15/2022,1.999305556,0,Astro Faculty,0,1 +7570,Shyam Harimohan Menon,Australian National University,9/28/2022,Claude-Andre Faucher-Giguere,,https://ciera.northwestern.edu/visits/shyam-harimohan-menon/,1668038400,1668211140,2023,theory-group-meetings,2023,11/10/2022,11/11/2022,2.999305556,1,,1,1 +7502,Federica Bianco,University of Delaware,9/22/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/federica-bianco/,1667865600,1667951940,2023,astrophysics-seminars,2023,11/8/2022,11/8/2022,1.999305556,0,,1,1 +7525,Hareesh G. Bhaskar,Georgia Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/hareesh-g-bhaskar/,1667347200,1667606340,2023,theory-group-meetings,2023,11/2/2022,11/4/2022,3.999305556,0,,1,1 +7500,Mitch Begelman,"University of Colorado, Boulder",9/22/2022,Giacomo Fragione,Fr,https://ciera.northwestern.edu/visits/mitch-begelman/,1667260800,1667347140,2023,astrophysics-seminars,2023,11/1/2022,11/1/2022,1.999305556,0,,1,1 +7666,Kyle Kremer,California Institute of Technology,10/25/2022,Chase Kimball,,https://ciera.northwestern.edu/visits/kyle-kremer-2/,1666569600,1667001540,2023,,2023,10/24/2022,10/28/2022,5.999305556,0,,1,3 +7668,Goni Halevi,Princeton University,10/25/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/goni-halevi-2/,1666569600,1667001540,2023,theory-group-meetings,2023,10/24/2022,10/28/2022,5.999305556,0,,1,3 +7669,Dhruv Desai,Columbia University,10/25/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/dhruv-desai/,1666742400,1667001540,2023,theory-group-meetings,2023,10/26/2022,10/28/2022,3.999305556,0,,1,1 +7667,Michael Zevin,University of Chicago,10/25/2022,Chase Kimball,,https://ciera.northwestern.edu/visits/michael-zevin/,1666569600,1666742340,2023,,2023,10/24/2022,10/25/2022,2.999305556,0,,1,3 +7498,Daniel Fabrycky,University of Chicago,9/22/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/daniel-fabrycky-4/,1666656000,1666742340,2023,astrophysics-seminars,2023,10/25/2022,10/25/2022,1.999305556,0,Postdoc,0,1 +7528,Erez Michaely,UCLA,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/erez-michaely-2/,1666137600,1666396740,2023,theory-group-meetings,2023,10/19/2022,10/21/2022,3.999305556,0,Astro Faculty,0,1 +7527,Shri Kulkarni,California Institute of Technology,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/shri-kulkarni-2/,1666051200,1666137540,2023,astrophysics-seminars,2023,10/18/2022,10/18/2022,1.999305556,0,,1,1 +7496,Emanuele Berti,Johns Hopkins University,9/22/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/emanuele-berti/,1665446400,1665532740,2023,astrophysics-seminars,2023,10/11/2022,10/11/2022,1.999305556,0,,1,1 +7521,Sylvia Biscoveanu,Massachusetts Institute of Technology,9/23/2022,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/sylvia-biscoveanu/,1664928000,1665273540,2023,theory-group-meetings,2023,10/5/2022,10/8/2022,4.999305556,0,,1,4 +7517,Lachlan Lancaster,Columbia University,9/23/2022,Alex Gurvich,,https://ciera.northwestern.edu/visits/lachlan-lancaster-2/,1664928000,1665187140,2023,,2023,10/5/2022,10/7/2022,3.999305556,0,,1,4 +7601,Carolyn Porco,,10/5/2022,,,https://ciera.northwestern.edu/visits/carolyn-porco/,1664928000,1665187140,2023,ciera-annual-public-lectures,2023,10/5/2022,10/7/2022,3.999305556,1,,1,4 +7511,Sanaea Rose,UCLA,9/23/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/sanaea-rose/,1664928000,1665100800,2023,theory-group-meetings,2023,10/5/2022,10/7/2022,3,0,Astro Faculty,0,4 +7493,Jenny Greene,Princeton University,9/22/2022,Giacomo Fragione,Gi,https://ciera.northwestern.edu/visits/jenny-greene-2/,1664841600,1664927940,2023,astrophysics-seminars,2023,10/4/2022,10/4/2022,1.999305556,0,,1,1 +7519,Lieke van Son,Harvard-Smithsonian Center for Astrophysics,9/23/2022,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/lieke-van-son/,1664323200,1664668740,2023,theory-group-meetings,2023,9/28/2022,10/1/2022,4.999305556,0,,1,1 +7492,Bing Zhang,"University of Nevada, Las Vegas",9/22/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/bing-zhang/,1664236800,1664323140,2023,astrophysics-seminars,2023,9/27/2022,9/27/2022,1.999305556,0,,1,1 +7515,Rachel Hur,University of Chicago,9/23/2022,Kyle Rocha,,https://ciera.northwestern.edu/visits/rachel-hur/,1663200000,1663286340,2023,,2023,9/15/2022,9/15/2022,1.999305556,0,,1,1 +7301,Srisurya Karthik Yadavalli,Pennsylvania State University,8/9/2022,Tarraneh Eftekhari,,https://ciera.northwestern.edu/visits/karthik-yadavalli/,1661731200,1662076740,2022,,2022,8/29/2022,9/1/2022,4.999305556,0,,1,1 +7684,Peter Nugent,Lawrence Berkeley National Laboratory,10/30/2022,Adam Miller,,https://ciera.northwestern.edu/visits/peter-nugent-4/,1630454400,1661904000,2021,,2022,9/1/2021,8/31/2022,365,0,,1,1 +7303,Fabio Pacucci,Harvard University,8/9/2022,Giacomo Fragione,,https://ciera.northwestern.edu/visits/fabio-pacucci/,1660262400,1660348740,2022,,2022,8/12/2022,8/12/2022,1.999305556,0,,1,1 +7289,Lia Medeiros,Institute for Advanced Study,8/3/2022,Sasha Tchekhovskoy,lia@ias.edu,https://ciera.northwestern.edu/visits/lia-medeiros/,1659916800,1660003140,2022,special-astronomy-seminars,2022,8/8/2022,8/8/2022,1.999305556,0,,1,2 +7291,Pravita Hallur,"Indian Institute of Science Education and Research, Mohali / Institute for Advanced Study",8/3/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/pravita-hallur/,1659916800,1660003140,2022,,2022,8/8/2022,8/8/2022,1.999305556,1,,1,2 +6257,Philip Muirhead,Boston University,8/6/2021,Fred Rasio,,https://ciera.northwestern.edu/visits/philip-muirhead/,1627776000,1659311940,2021,,2021,8/1/2021,7/31/2022,365.9993056,0,,1,1 +7268,Sebastian Gomez,Space Telescope Science Institute,7/11/2022,Peter Blanchard,,https://ciera.northwestern.edu/visits/sebastian-gomez-2/,1658275200,1658448000,2022,,2022,7/20/2022,7/22/2022,3,0,Astro Faculty,1,1 +7170,Martyna Chruslinska,Max-Planck Institute for Astrophysics,6/3/2022,Zoheyr Doctor,,https://ciera.northwestern.edu/visits/martyna-chruslinska/,1657497600,1657843200,2022,special-astronomy-seminars,2022,7/11/2022,7/15/2022,5,1,,1,1 +7267,Srisurya Karthik Yadavalli,Pennsylvania State University,7/11/2022,Tarraneh Eftekhari,,https://ciera.northwestern.edu/visits/srisurya-karthik-yadavalli/,1656374400,1656633600,2022,,2022,6/28/2022,7/1/2022,4,0,Astro Faculty,0,1 +7168,Whitney Powers,"University of Colorado, Boulder",6/3/2022,Evan Anders,,https://ciera.northwestern.edu/visits/whitney-powers/,1655078400,1656028800,2022,special-astronomy-seminars,2022,6/13/2022,6/24/2022,12,0,,1,3 +7185,Allison Strom,Princeton University,6/13/2022,Vicky Kalogera,,https://ciera.northwestern.edu/visits/allison-strom-3/,1655769600,1655856000,2021,,2022,6/21/2022,6/22/2022,2,0,,1,1 +7184,Brett Bolen,Grand Valley State University,6/13/2022,Shane Larson,bolenbr@gvsu.edu,https://ciera.northwestern.edu/visits/brett-bolen-3/,1655078400,1655424000,2021,,2022,6/13/2022,6/17/2022,5,0,,1,3 +7266,Brett Bolen,Grand Valley State University,7/11/2022,Shane Larson,,https://ciera.northwestern.edu/visits/brett-bolen-4/,1655078400,1655424000,2022,,2022,6/13/2022,6/17/2022,5,0,Astro Faculty,0,3 +7165,Tajana Schneiderman,Massachusetts Institute of Technology,6/1/2022,Sukrit Ranjan,,https://ciera.northwestern.edu/visits/tajana-schneiderman/,1654214400,1654214400,2022,science-happy-hour,2022,6/3/2022,6/3/2022,1,0,Astro Faculty,0,1 +7166,Briley Lewis,UCLA,6/1/2022,Huei Sears,,https://ciera.northwestern.edu/visits/briley-lewis/,1653696000,1653696000,2022,science-happy-hour,2022,5/28/2022,5/28/2022,1,0,,1,1 +7100,Poojan Agarwal,Carnegie Mellon University,5/3/2022,Maya Fishbach,,https://ciera.northwestern.edu/visits/poojan-agarwal/,1653350400,1653436740,2022,astrophysics-seminars,2022,5/24/2022,5/24/2022,1.999305556,0,Astro Faculty,0,1 +7142,Dongzi Li,California Institute of Technology,5/18/2022,Kate Alexander/ Vic Dong,"dongzili@caltech.edu",https://ciera.northwestern.edu/visits/dongzi-li/,1653004800,1653091140,2022,science-happy-hour,2022,5/20/2022,5/20/2022,1.999305556,0,Astro Faculty,0,2 +7021,Mor Rozner,Technion,3/31/2022,Michelle Vick,"morozner@campus.technion.ac.il",https://ciera.northwestern.edu/visits/mor-rozner/,1653004800,1653004800,2022,science-happy-hour,2022,5/20/2022,5/20/2022,1,1,,1,2 +7097,Jennifer Bergner,University of Chicago,5/3/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/jennifer-bergner-2/,1652745600,1652831940,2022,astrophysics-seminars,2022,5/17/2022,5/17/2022,1.999305556,0,,1,1 +7122,Marcos Flores,UCLA,5/6/2022,,"mmflores@physics.ucla.edu",https://ciera.northwestern.edu/visits/marcos-flores/,1652486400,1652572740,2022,science-happy-hour,2022,5/14/2022,5/14/2022,1.999305556,0,,1,1 +7048,Goni Halevi,Princeton University,4/8/2022,Sasha Tchekhovskoy,"ghalevi@princeton.edu",https://ciera.northwestern.edu/visits/goni-halevi/,1649635200,1652486400,2022,,2022,4/11/2022,5/14/2022,34,0,,1,2 +7124,Omer Bromberg,Tel Aviv University,5/6/2022,Sasha Tchekhovskoy,omerbr@tauex.tau.ac.il,https://ciera.northwestern.edu/visits/omer-bromberg-2/,1651622400,1652400000,2022,,2022,5/4/2022,5/13/2022,10,1,,1,1 +7107,Michael Le Bars,"Aix-Marseille University, Marseille, France",5/4/2022,Daniel Lecoanet,,https://ciera.northwestern.edu/visits/michael-le-bars/,1652227200,1652399940,2022,interdisciplinary-colloquia,2022,5/11/2022,5/12/2022,2.999305556,1,,1,1 +7075,Rosalba Perna,State University of New York at Stony Brook,4/25/2022,Giacomo Fragione,rosalba.perna@stonybrook.edu,https://ciera.northwestern.edu/visits/rosalba-perna-3/,1652140800,1652140800,2022,astrophysics-seminars,2022,5/10/2022,5/10/2022,1,1,Astro Faculty,0,1 +7091,Jakob Stegmann,Cardiff University,4/30/2022,Zoheyr Doctor,StegmannJ@cardiff.ac.uk,https://ciera.northwestern.edu/visits/jakob-stegmann/,1651795200,1651881540,2022,science-happy-hour,2022,5/6/2022,5/6/2022,1.999305556,1,,1,1 +7055,Anna Chashkina,Tel Aviv University,4/14/2022,Sasha Tchekhovskoy,sagitta.minor@gmail.com,https://ciera.northwestern.edu/visits/anna-chashkina-2/,1650240000,1651708800,2022,,2022,4/18/2022,5/5/2022,18,1,Postdoc,1,1 +6981,Claire Kopenhafer,Michigan State University,3/8/2022,Huei Sears,"kopenhaf@msu.edu",https://ciera.northwestern.edu/visits/claire-kopenhafer/,1651190400,1651190400,2022,science-happy-hour,2022,4/29/2022,4/29/2022,1,0,,1,1 +6970,Sihao Cheng,Johns Hopkins University,3/8/2022,Tjitske Starkenburg,"s.cheng@jhu.edu",https://ciera.northwestern.edu/visits/sihao-cheng/,1650585600,1650585600,2022,science-happy-hour,2022,4/22/2022,4/22/2022,1,0,,1,1 +7025,Fakhri Zahedy,Carnegie Observatories,4/1/2022,Claude-Andr� Faucher-Gigu�re,fzahedy@carnegiescience.edu,https://ciera.northwestern.edu/visits/fakhri-zahedy-2/,1650326400,1650326400,2022,astrophysics-seminars,2022,4/19/2022,4/19/2022,1,0,Astro Faculty,0,1 +6961,Deep Chatterjee,University of Illinois at Urbana-Champaign,3/3/2022,Zoheyr Doctor,"deep1018@illinois.edu",https://ciera.northwestern.edu/visits/deep-chatterjee/,1649980800,1649980800,2022,science-happy-hour,2022,4/15/2022,4/15/2022,1,0,,1,2 +6967,Jenny Calahan,University of Michigan,3/8/2022,Huei Sears,"jcalahan@umich.edu",https://ciera.northwestern.edu/visits/jenny-calahan/,1649980800,1649980800,2022,science-happy-hour,2022,4/15/2022,4/15/2022,1,0,,1,2 +7051,Rebecca Charbonneau,Harvard-Smithsonian Center for Astrophysics,4/12/2022,"Huei Sears, Camille Liotine, Anya Nugent",,https://ciera.northwestern.edu/visits/rebecca-charbonneau/,1649635200,1649635200,2022,social-justice-initiative,2022,4/11/2022,4/11/2022,1,0,,1,2 +6953,Lili Alderson,University of Bristol,3/2/2022,Huei Sears,"lili.alderson@bristol.ac.uk ",https://ciera.northwestern.edu/visits/lili-alderson/,1649376000,1649376000,2022,science-happy-hour,2022,4/8/2022,4/8/2022,1,1,,1,2 +6957,Janosz Dewberry,California Institute of Technology,3/3/2022,Zoheyr Doctor,"dewberry@caltech.edu",https://ciera.northwestern.edu/visits/janosz-dewberry/,1649376000,1649376000,2022,science-happy-hour,2022,4/8/2022,4/8/2022,1,0,,1,2 +6950,Teresa Panurach,Michigan State University,3/2/2022,Huei Sears,"panurach@msu.edu",https://ciera.northwestern.edu/visits/teresa-panurach/,1648771200,1648771200,2022,science-happy-hour,2022,4/1/2022,4/1/2022,1,0,,1,1 +6915,Anna Ho,"University of California, Berkeley",2/22/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/anna-ho-2/,1647302400,1647302400,2022,,2022,3/15/2022,3/15/2022,1,0,,1,1 +6912,Jane Huang,University of Michigan,2/22/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/jane-huang-2/,1646697600,1646697600,2022,,2022,3/8/2022,3/8/2022,1,0,,1,1 +6909,Allison Strom,Princeton University,2/22/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/allison-strom-2/,1646179200,1646179200,2022,,2022,3/2/2022,3/2/2022,1,0,,1,1 +6906,Lena Murchikova,Institute for Advanced Study,2/22/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/lena-murchikova/,1646006400,1646006400,2022,,2022,2/28/2022,2/28/2022,1,0,,1,1 +6868,Antonin Affholder,Ecole Normale Sup�rieure/Observatoire de Paris,2/8/2022,Sukrit Ranjan,,https://ciera.northwestern.edu/visits/antonin-affholder/,1645747200,1645747200,2022,science-happy-hour,2022,2/25/2022,2/25/2022,1,1,,1,1 +6892,Maya Fishbach,Northwestern University,2/15/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/maya-fishbach-3/,1645574400,1645574400,2022,,2022,2/23/2022,2/23/2022,1,0,,1,1 +6877,Patrick Sheehan,Northwestern University,2/10/2022,Fred Rasio,,https://ciera.northwestern.edu/visits/patrick-sheehan-4/,1644883200,1644883200,2022,,2022,2/15/2022,2/15/2022,1,0,,1,1 +6767,John Zanazzi,Canadian Institute for Theoretical Astrophysics,1/4/2022,Adam Miller,jzanazzi@cita.utoronto.ca,https://ciera.northwestern.edu/visits/john-zanazzi/,1642118400,1642118400,2022,science-happy-hour,2022,1/14/2022,1/14/2022,1,1,,1,2 +6770,Kathryn Neugent,University of Toronto,1/4/2022,Adam Miller,kathryn.neugent@utoronto.ca,https://ciera.northwestern.edu/visits/kathryn-neugent/,1642118400,1642118400,2022,science-happy-hour,2022,1/14/2022,1/14/2022,1,1,,1,2 +6785,Wenrui Xu,Princeton University,1/11/2022,Adam Miller,,https://ciera.northwestern.edu/visits/wenrui-xu/,1642032000,1642032000,2022,,2022,1/13/2022,1/13/2022,1,0,,1,1 +6727,Itai Linial,"Racah Institute of Physics, Hebrew University",12/13/2021,Adam Miller,itailinial@gmail.com,https://ciera.northwestern.edu/visits/itai-linial/,1639699200,1639699200,2021,science-happy-hour,2022,12/17/2021,12/17/2021,1,1,,1,2 +6734,Jared Goldberg,"University of California, Santa Barbara",12/16/2021,Adam Miller,,https://ciera.northwestern.edu/visits/jared-goldberg/,1639699200,1639699200,2021,science-happy-hour,2022,12/17/2021,12/17/2021,1,0,,1,2 +6717,Sanskriti Das,Ohio State University,12/6/2021,Adam Miller,,https://ciera.northwestern.edu/visits/sanskriti-das/,1639094400,1639094400,2021,science-happy-hour,2022,12/10/2021,12/10/2021,1,0,Postdoc,0,2 +6722,Feng Long,Harvard University,12/7/2021,Adam Miller,,https://ciera.northwestern.edu/visits/feng-long/,1639094400,1639094400,2021,science-happy-hour,2022,12/10/2021,12/10/2021,1,0,,1,2 +6811,Eduardo Mario Guti�rrez,Argentinian Institute of Radio Astronomy,1/25/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/eduardo-mario-gutierrez/,1637625600,1637625600,2021,,2022,11/23/2021,11/23/2021,1,1,Astro Faculty,0,1 +6623,Charlotte Wood,University of Notre Dame,11/4/2021,Huei Sears,"cwood12@nd.edu",https://ciera.northwestern.edu/visits/charlotte-wood/,1637280000,1637280000,2021,science-happy-hour,2022,11/19/2021,11/19/2021,1,0,,1,2 +6626,Tamar Faran,"Racah Institute of Physics, Hebrew University",11/4/2021,Sasha Tchekhovskoy,"tamar.faran@mail.huji.ac.il",https://ciera.northwestern.edu/visits/tamar-faran/,1637280000,1637280000,2021,science-happy-hour,2022,11/19/2021,11/19/2021,1,1,,1,2 +6629,Odelia Teboul,"Racah Institute of Physics, Hebrew University",11/4/2021,Ore Gottlieb,odelia.teboul@gmail.com,https://ciera.northwestern.edu/visits/odelia-teboul/,1637193600,1637193600,2021,special-astronomy-seminars,2022,11/18/2021,11/18/2021,1,1,,1,2 +6632,Adam Samuels,Boston University,11/4/2021,Ore Gottlieb,asamuels@bu.edu,https://ciera.northwestern.edu/visits/adam-samuels/,1637193600,1637193600,2021,special-astronomy-seminars,2022,11/18/2021,11/18/2021,1,0,,1,2 +6666,Monica Vidaurri,Stanford University,11/9/2021,Camille Liotine/Anya Nugent/Huei Sears,,https://ciera.northwestern.edu/visits/monica-vidaurri/,1637020800,1637020800,2021,social-justice-initiative,2022,11/16/2021,11/16/2021,1,0,,1,2 +6805,Prasun Dhang,Inter-University Centre for Astronomy and Astrophysics,1/25/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/prasun-dhang/,1637020800,1637020800,2021,,2022,11/16/2021,11/16/2021,1,1,,1,2 +6593,Mohit Bhardwaj,McGill University,10/25/2021,Charlie Kilpatrick,"mohit.bhardwaj@mail.mcgill.ca",https://ciera.northwestern.edu/visits/mohit-bhardwaj/,1636675200,1636675200,2021,science-happy-hour,2022,11/12/2021,11/12/2021,1,1,,1,2 +6596,Erez Michaely,UCLA,10/25/2021,Giacomo Fragione,"erezmichaely@gmail.com",https://ciera.northwestern.edu/visits/erez-michaely/,1636675200,1636675200,2021,science-happy-hour,2022,11/12/2021,11/12/2021,1,0,,1,2 +6549,Chihway Chang,University of Chicago,10/11/2021,Fred Rasio,chihway@kicp.uchicago.edu,https://ciera.northwestern.edu/visits/chihway-chang/,1636416000,1636416000,2021,astrophysics-seminars,2022,11/9/2021,11/9/2021,1,0,,1,2 +6808,Sudipta Hensh,"Silesian University, Opava",1/25/2022,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/sudipta-hensh/,1636416000,1636416000,2021,,2022,11/9/2021,11/9/2021,1,1,,1,2 +6574,Barry McKernan,American Museum of Natural History,10/20/2021,Giacomo Fragione,"bmckernan@amnh.org",https://ciera.northwestern.edu/visits/barry-mckernan/,1636070400,1636070400,2021,science-happy-hour,2022,11/5/2021,11/5/2021,1,0,,1,2 +6577,Matthew Siebert,UC Santa Cruz,10/20/2021,"Charlie Kilpatrick, Adam Miller",msiebert@ucsc.edu,https://ciera.northwestern.edu/visits/matthew-siebert/,1636070400,1636070400,2021,science-happy-hour,2022,11/5/2021,11/5/2021,1,0,,1,2 +6468,Reed Essick,Perimeter Institute,10/11/2021,Fred Rasio,"reed.essick@gmail.com",https://ciera.northwestern.edu/visits/reed-essick-2/,1635811200,1635811200,2021,astrophysics-seminars,2022,11/2/2021,11/2/2021,1,1,,1,1 +6567,Catherine Clark,Northern Arizona University,10/18/2021,Huei Sears,catclark@nau.edu,https://ciera.northwestern.edu/visits/catherine-clark/,1635465600,1635465600,2021,science-happy-hour,2022,10/29/2021,10/29/2021,1,0,,1,2 +6586,Kenzie Nimmo,University of Amsterdam,10/20/2021,Tarraneh Eftekhari,k.nimmo@uva.nl,https://ciera.northwestern.edu/visits/kenzie-nimmo/,1635465600,1635465600,2021,science-happy-hour,2022,10/29/2021,10/29/2021,1,1,,1,2 +6417,Brenna Mockler,"University of California, Santa Cruz",9/22/2021,Ariadna Murguia-Berthier,"bmockler@ucsc.edu",https://ciera.northwestern.edu/visits/brenna-mockler/,1634860800,1634860800,2021,science-happy-hour,2022,10/22/2021,10/22/2021,1,0,,1,2 +6545,Laurence Datrier,University of Glasgow,10/11/2021,Sharan Banagiri,"l.datrier.1@research.gla.ac.uk",https://ciera.northwestern.edu/visits/laurence-datrier/,1634860800,1634860800,2021,science-happy-hour,2022,10/22/2021,10/22/2021,1,1,,1,2 +6414,Daniel Egana-Ugrinovic,Perimeter Institute,9/22/2021,Giacomo Fragione,"danielegana@gmail.com",https://ciera.northwestern.edu/visits/daniel-egana-ugrinovic/,1634256000,1634256000,2021,science-happy-hour,2022,10/15/2021,10/15/2021,1,1,,1,2 +6542,Vladimir Strokov,Johns Hopkins University,10/11/2021,Giacomo Fragione,vstroko1@jhu.edu,https://ciera.northwestern.edu/visits/vladimir-strokov/,1634256000,1634256000,2021,science-happy-hour,2022,10/15/2021,10/15/2021,1,0,,1,2 +6391,Sarah Pearson,New York University,9/14/2021,Tjitske Starkenburg,"spearson@nyu.edu",https://ciera.northwestern.edu/visits/sarah-pearson/,1633651200,1633651200,2021,science-happy-hour,2022,10/8/2021,10/8/2021,1,0,,1,2 +6394,Ken Ng,Massachusetts Institute of Technology,9/14/2021,Zoheyr Doctor,"kenkyng@mit.edu ",https://ciera.northwestern.edu/visits/ken-ng/,1633651200,1633651200,2021,science-happy-hour,2022,10/8/2021,10/8/2021,1,0,,1,2 +6387,Mia de los Reyes,California Institute of Technology,9/14/2021,Huei Sears,"mdelosre@caltech.edu",https://ciera.northwestern.edu/visits/mia-de-los-reyes/,1633046400,1633046400,2021,science-happy-hour,2022,10/1/2021,10/1/2021,1,0,,1,2 +6408,Luna Zagorac,Yale University,9/21/2021,Lindsay DeMarchi,"jovana.zagorac@yale.edu",https://ciera.northwestern.edu/visits/luna-zagorac/,1633046400,1633046400,2021,science-happy-hour,2022,10/1/2021,10/1/2021,1,0,,1,2 +6405,Sophie Schr�der,Niels Bohr Institute,9/21/2021,Ariadna Murguia-Berthier,"sophie.schroder@nbi.ku.dk",https://ciera.northwestern.edu/visits/sophie-schroder/,1632441600,1632441600,2021,science-happy-hour,2022,9/24/2021,9/24/2021,1,1,,1,2 +6423,Kyle Kremer,California Institute of Technology / Carnegie Observatories,9/24/2021,Giacomo Fragione,kkremer@caltech.edu,https://ciera.northwestern.edu/visits/kyle-kremer/,1632441600,1632441600,2021,science-happy-hour,2022,9/24/2021,9/24/2021,1,0,,1,2 +6255,Peter Nugent,Lawrence Berkeley National Laboratory,8/5/2021,Adam Miller,,https://ciera.northwestern.edu/visits/peter-nugent-2/,1628553600,1630454340,2021,,2021,8/10/2021,8/31/2021,22.99930556,0,,1,1 +6065,Mark Vogelsberger,Massachusetts Institute of Technology,5/13/2021,Claude-Andr� Faucher-Gigu�re,"mvogelsb@mit.edu",https://ciera.northwestern.edu/visits/mark-vogelsberger/,1622160000,1622160000,2020,science-happy-hour,2021,5/28/2021,5/28/2021,1,0,,1,2 +6069,Jan van Roestel,California Institute of Technology,5/13/2021,Deanne Coppejans,"jcjvanroestel@gmail.com",https://ciera.northwestern.edu/visits/jan-van-roestel/,1622160000,1622160000,2020,science-happy-hour,2021,5/28/2021,5/28/2021,1,0,,1,2 +6045,Amruta Jaodand,California Institute of Technology,5/7/2021,Alicia Rouco Escorial,"amruta.jaodand@gmail.com",https://ciera.northwestern.edu/visits/amruta-jaodand/,1621555200,1621555200,2020,science-happy-hour,2021,5/21/2021,5/21/2021,1,0,,1,2 +6048,Ylva G�tberg,Carnegie Observatories,5/7/2021,Alicia Rouco Escorial,"ygoetberg@carnegiescience.edu",https://ciera.northwestern.edu/visits/ylva-gotberg/,1621555200,1621555200,2020,science-happy-hour,2021,5/21/2021,5/21/2021,1,0,,1,2 +5618,Greg Mosby,NASA Goddard Space Flight Center,11/24/2020,Kerry Paterson & Mel Ulmer,,https://ciera.northwestern.edu/visits/greg-mosby-2/,1621296000,1621296000,2020,astrophysics-seminars,2021,5/18/2021,5/18/2021,1,0,,1,1 +6022,Melinda Soares-Furtado,"University of Wisconsin, Madison",4/30/2021,Luke Kelley,"msoares.physics@gmail.com",https://ciera.northwestern.edu/visits/melinda-soares-furtado/,1620950400,1620950400,2020,science-happy-hour,2021,5/14/2021,5/14/2021,1,0,,1,2 +6025,Moses Mogotsi,South African Astronomical Observatory,4/30/2021,Deanne Coppejans,"moses.mog@gmail.com",https://ciera.northwestern.edu/visits/moses-mogotsi/,1620950400,1620950400,2020,science-happy-hour,2021,5/14/2021,5/14/2021,1,1,,1,2 +5576,Joe Anderson,European Organisation for Astronomical Research in the Southern Hemisphere,11/9/2020,Giacomo Terreran,janderso@eso.org,https://ciera.northwestern.edu/visits/joe-anderson/,1620691200,1620777540,2020,astrophysics-seminars,2021,5/11/2021,5/11/2021,1.999305556,1,,1,1 +6016,Simeon Bird,UC Riverside,4/28/2021,Alex Gurvich,"sbird@ucr.edu",https://ciera.northwestern.edu/visits/simeon-bird-2/,1620345600,1620345600,2020,science-happy-hour,2021,5/7/2021,5/7/2021,1,0,,1,1 +5966,Caitlin Witt,West Virginia University,4/20/2021,Luke Kelley,"caw0057@mix.wvu.edu",https://ciera.northwestern.edu/visits/caitlin-witt/,1619740800,1619740800,2020,science-happy-hour,2021,4/30/2021,4/30/2021,1,0,,1,2 +5970,Kathryn Weil,Purdue University,4/20/2021,Kerry Paterson,"keweil@purdue.edu",https://ciera.northwestern.edu/visits/kathryn-weil/,1619740800,1619740800,2020,science-happy-hour,2021,4/30/2021,4/30/2021,1,0,,1,2 +5631,Lia Corrales,University of Michigan,11/30/2020,Kerry Paterson,,https://ciera.northwestern.edu/visits/lia-corrales/,1619481600,1619481600,2020,astrophysics-seminars,2021,4/27/2021,4/27/2021,1,0,,1,1 +5960,Lachlan Lancaster,Princeton University,4/20/2021,Alex Gurvich,"lachlanl@princeton.edu",https://ciera.northwestern.edu/visits/lachlan-lancaster/,1619136000,1619136000,2020,science-happy-hour,2021,4/23/2021,4/23/2021,1,0,,1,3 +5963,Wendy Williams,Leiden University,4/20/2021,Deanne Coppejans,"wwilliams@strw.leidenuniv.nl",https://ciera.northwestern.edu/visits/wendy-williams/,1619136000,1619136000,2020,science-happy-hour,2021,4/23/2021,4/23/2021,1,1,,1,3 +5975,Jim Kasting,Pennsylvania State University,4/22/2021,Fred Rasio,,https://ciera.northwestern.edu/visits/james-kasting/,1619136000,1619136000,2020,interdisciplinary-colloquia,2021,4/23/2021,4/23/2021,1,0,,1,3 +5622,Jennifer Barnes,Columbia University,11/25/2020,Wen-fai Fong,,https://ciera.northwestern.edu/visits/jennifer-barnes/,1618876800,1618876800,2020,astrophysics-seminars,2021,4/20/2021,4/20/2021,1,0,,1,1 +5946,Sambaran Banerjee,University of Bonn,4/15/2021,Giacomo Fragione,"sambaran@astro.uni-bonn.de",https://ciera.northwestern.edu/visits/sambaran-banerjee-3/,1618531200,1618531200,2020,science-happy-hour,2021,4/16/2021,4/16/2021,1,1,,1,2 +5949,Kaze Wang Kei Wong,Johns Hopkins University,4/15/2021,Giacomo Fragione,"kazewong@jhu.edu",https://ciera.northwestern.edu/visits/kaze-wang-kei-wong/,1618531200,1618531200,2020,science-happy-hour,2021,4/16/2021,4/16/2021,1,0,,1,2 +5632,Megan Ansdell,NASA,11/30/2020,Patrick Sheehan,,https://ciera.northwestern.edu/visits/megan-ansdell/,1618272000,1618272000,2020,astrophysics-seminars,2021,4/13/2021,4/13/2021,1,0,Postdoc,1,1 +5933,Francisco Mercado,UC Irvine,4/8/2021,Alex Gurvich,"mercadf1@uci.edu",https://ciera.northwestern.edu/visits/francisco-mercado/,1617926400,1617926400,2020,science-happy-hour,2021,4/9/2021,4/9/2021,1,0,Postdoc,0,2 +5936,Anna Sijie Yu,UC Irvine,4/8/2021,Alex Gurvich,"anna.yu@uci.edu",https://ciera.northwestern.edu/visits/anna-yu/,1617926400,1617926400,2020,science-happy-hour,2021,4/9/2021,4/9/2021,1,0,Astro Faculty,1,2 +5637,Alexander Ji,University of Chicago,12/1/2020,Wen-fai Fong,,https://ciera.northwestern.edu/visits/alexander-ji/,1617667200,1617667200,2020,astrophysics-seminars,2021,4/6/2021,4/6/2021,1,0,Postdoc,0,1 +5999,Rachel Bezanson,University of Pittsburgh,4/26/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/rachel-bezanson-2/,1616371200,1616544000,2020,special-astronomy-seminars,2021,3/22/2021,3/24/2021,3,0,Astro Faculty,0,2 +5897,Ana Bonaca,Harvard University,3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ana-bonaca-2/,1616371200,1616457600,2020,special-astronomy-seminars,2021,3/22/2021,3/23/2021,2,0,Group Meeting,1,2 +5899,Adam Miller,Northwestern University,3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/adam-miller/,1615939200,1616112000,2020,special-astronomy-seminars,2021,3/17/2021,3/19/2021,3,0,Group Meeting,0,1 +5895,Ben Margalit,"University of California, Berkeley",3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ben-margalit/,1615852800,1616025600,2020,special-astronomy-seminars,2021,3/16/2021,3/18/2021,3,0,Postdoc,0,1 +5891,Kareem El-Badry,"University of California, Berkeley",3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/kareem-el-badry-2/,1615766400,1615939200,2020,special-astronomy-seminars,2021,3/15/2021,3/17/2021,3,0,Postdoc,0,1 +5893,Jason Wang,California Institute of Technology,3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/jason-wang/,1615248000,1615420800,2020,special-astronomy-seminars,2021,3/9/2021,3/11/2021,3,0,Postdoc,0,1 +5887,Marta Bryan,"University of California, Berkeley",3/23/2021,Vicky Kalogera,,https://ciera.northwestern.edu/visits/marta-bryan/,1615161600,1615334400,2020,special-astronomy-seminars,2021,3/8/2021,3/10/2021,3,0,Astro Faculty,0,1 +5835,Elaad Applebaum,Rutgers University,2/15/2021,Alex Gurvich,applebaum@physics.rutgers.edu,https://ciera.northwestern.edu/visits/elaad-applebaum/,1614297600,1614297600,2020,science-happy-hour,2021,2/26/2021,2/26/2021,1,0,Postdoc,0,1 +5827,Michael Pajkos,Michigan State University,2/15/2021,Giacomo Fragione,pajkosmi@msu.edu,https://ciera.northwestern.edu/visits/michael-pajkos/,1613692800,1613692800,2020,science-happy-hour,2021,2/19/2021,2/19/2021,1,0,Postdoc,0,2 +5830,Edwin Chi-Ho Chan,Hebrew University of Jerusalem,2/15/2021,Giacomo Fragione,chi-ho.chan@mail.huji.ac.il,https://ciera.northwestern.edu/visits/edwin-chi-ho-chan/,1613692800,1613692800,2020,science-happy-hour,2021,2/19/2021,2/19/2021,1,1,Group Meeting,0,2 +5625,Johanna Teske,Carnegie Institution for Science,11/30/2020,Sukrit Ranjan,,https://ciera.northwestern.edu/visits/johanna-teske/,1613433600,1613433600,2020,astrophysics-seminars,2021,2/16/2021,2/16/2021,1,1,Astro Faculty,0,1 +5813,Christopher Irwin,Tel Aviv University,2/8/2021,Giacomo Fragione,"christopheri@mail.tau.ac.il",https://ciera.northwestern.edu/visits/christopher-irwin/,1613088000,1613088000,2020,science-happy-hour,2021,2/12/2021,2/12/2021,1,1,Astro Faculty,0,2 +5816,Tatsuya Matsumoto,Hebrew University of Jerusalem,2/8/2021,Giacomo Fragione,"tatsuya.matsumoto@mail.huji.ac.il",https://ciera.northwestern.edu/visits/tatsuya-matsumoto/,1613088000,1613088000,2020,science-happy-hour,2021,2/12/2021,2/12/2021,1,1,Postdoc,0,2 +5574,Renyu Hu,NASA Jet Propulsion Laboratory / NASA Goddard Space Flight Center,11/9/2020,Sukrit Ranjan,,https://ciera.northwestern.edu/visits/renyu-hu/,1612828800,1612915140,2020,astrophysics-seminars,2021,2/9/2021,2/9/2021,1.999305556,1,Postdoc,0,1 +5573,Alexie Leauthaud,UCSC,11/9/2020,Tjitske Starkenburg,,https://ciera.northwestern.edu/visits/alexie-leauthaud/,1612224000,1612310340,2020,astrophysics-seminars,2021,2/2/2021,2/2/2021,1.999305556,0,Postdoc,0,1 +5800,Daniele Michilli,McGill Space Institute,1/29/2021,Alicia Rouco Escorial,"danielemichilli@gmail.com",https://ciera.northwestern.edu/visits/daniele-michilli/,1611878400,1611878400,2020,science-happy-hour,2021,1/29/2021,1/29/2021,1,1,Grad Student,1,1 +5571,Tuguldur Sukhbold,Ohio State University,11/9/2020,Giacomo Terreran,,https://ciera.northwestern.edu/visits/tuguldur-sukhbold-2/,1611619200,1611705540,2020,astrophysics-seminars,2021,1/26/2021,1/26/2021,1.999305556,0,Postdoc,0,1 +5568,Viviana Acquaviva,New York City College of Technology,11/9/2020,Tjitske Starkenburg,,https://ciera.northwestern.edu/visits/viviana-acquaviva/,1611014400,1611100740,2020,astrophysics-seminars,2021,1/19/2021,1/19/2021,1.999305556,1,Astro Faculty,0,1 +5714,Jamie Law-Smith,"University of California, Santa Cruz",12/18/2020,Sasha Tchekhovskoy,lawsmith@ucsc.edu,https://ciera.northwestern.edu/visits/jamie-law-smith/,1607644800,1607644800,2020,science-happy-hour,2021,12/11/2020,12/11/2020,1,0,,1,2 +5716,Jennifer Barnes,Columbia University,12/18/2020,Wen-fai Fong,,https://ciera.northwestern.edu/visits/jennifer-barnes-2/,1607644800,1607644800,2020,science-happy-hour,2021,12/11/2020,12/11/2020,1,0,,1,2 +5708,Ariadna Murguia-Berthier,"University of California, Santa Cruz",12/18/2020,Fred Rasio,armurgui@ucsc.edu,https://ciera.northwestern.edu/visits/ariadna-murguia-berthier/,1607040000,1607040000,2020,science-happy-hour,2021,12/4/2020,12/4/2020,1,0,,1,1 +4625,Cameron Liang,"University of California, Santa Barbara",11/22/2019,Zach Hafen,Long-term Visitor (no official CIERA/Northwestern appointment),https://ciera.northwestern.edu/visits/cameron-liang/,1575158400,1606780800,2019,,2020,12/1/2019,12/1/2020,367,0,Astro Faculty,1,1 +5160,Kishalay De,California Institute of Technology,9/24/2020,Raffaella Margutti,kde@astro.caltech.edu,https://ciera.northwestern.edu/visits/kishalay-de-2/,1605830400,1605830400,2020,science-happy-hour,2021,11/20/2020,11/20/2020,1,0,,1,1 +5159,Tarraneh Eftekhari,Harvard University,9/24/2020,Kate Alexander,tarraneh.eftekhari@cfa.harvard.edu,https://ciera.northwestern.edu/visits/tarraneh-eftekhari-2/,1605225600,1605225600,2020,science-happy-hour,2021,11/13/2020,11/13/2020,1,0,,1,1 +4518,Zaven Arzoumanian,NASA,10/25/2019,Giacomo Fragione,Astro Seminar,https://ciera.northwestern.edu/visits/zaven-arzoumanian/,1604966400,1604966400,2020,astrophysics-seminars,2021,11/10/2020,11/10/2020,1,0,,1,1 +5157,Meridith Joyce,Australian National University,9/24/2020,Kerry Paterson,"Meridith.Joyce@anu.edu.au",https://ciera.northwestern.edu/visits/meridith-joyce/,1604620800,1604620800,2020,science-happy-hour,2021,11/6/2020,11/6/2020,1,1,,1,1 +5035,Nia Imara,Harvard-Smithsonian Center for Astrophysics,8/19/2020,Patrick Sheehan,Astro Seminar,https://ciera.northwestern.edu/visits/nia-imara/,1603756800,1603756800,2020,astrophysics-seminars,2021,10/27/2020,10/27/2020,1,0,,1,1 +5155,Sebastian Gomez,Harvard-Smithsonian Center for Astrophysics,9/24/2020,Raffaella Margutti,sebastian.gomez@cfa.harvard.edu,https://ciera.northwestern.edu/visits/sebastian-gomez/,1603411200,1603411200,2020,science-happy-hour,2021,10/23/2020,10/23/2020,1,0,,1,1 +4526,Keith Hawkins,"University of Texas, Austin",10/28/2019,Erin Cox,Astro Seminar,https://ciera.northwestern.edu/visits/keith-hawkins/,1603152000,1603152000,2020,astrophysics-seminars,2021,10/20/2020,10/20/2020,1,0,,1,1 +5153,Bur�in Mutlu Pakdil,University of Chicago,9/24/2020,"Kerry Paterson, Wen-fai Fong",burcinmp@uchicago.edu.,https://ciera.northwestern.edu/visits/burcin-mutlu-pakdil/,1602806400,1602806400,2020,science-happy-hour,2021,10/16/2020,10/16/2020,1,0,,1,1 +4520,Josiah Schwab,"University of California, Santa Cruz",10/25/2019,Giacomo Terreran,Astro Seminar,https://ciera.northwestern.edu/visits/josiah-schwab/,1602547200,1602547200,2020,astrophysics-seminars,2021,10/13/2020,10/13/2020,1,0,,1,1 +4559,Ilse Cleeves,University of Virginia,11/8/2019,Patrick Sheehan,Astro Seminar,https://ciera.northwestern.edu/visits/ilse-cleeves-2/,1601942400,1601942400,2020,astrophysics-seminars,2021,10/6/2020,10/6/2020,1,0,,1,1 +5150,Kareem El-Badry,"University of California, Berkeley",9/24/2020,Claude-Andr� Faucher-Gigu�re,kelbadry@berkeley.edu,https://ciera.northwestern.edu/visits/kareem-el-badry/,1601596800,1601596800,2020,science-happy-hour,2021,10/2/2020,10/2/2020,1,0,,1,1 +5023,Marla Geha,Yale University,8/5/2020,Tjitske Starkenburg,Astro Seminar,https://ciera.northwestern.edu/visits/marla-geha/,1601337600,1601337600,2020,astrophysics-seminars,2021,9/29/2020,9/29/2020,1,0,,1,1 +5046,Stephen Taylor,Vanderbilt University,8/25/2020,"Kerry Paterson, Luke Kelley",Astro Seminar,https://ciera.northwestern.edu/visits/stephen-taylor-2/,1600732800,1600732800,2020,astrophysics-seminars,2021,9/22/2020,9/22/2020,1,0,,1,1 +4673,Smriti Vats,Independent Researcher,12/16/2019,Alicia Rouco Escorial,Independent researcher (possible Observational Astro talk),https://ciera.northwestern.edu/visits/smriti-vats/,1576454400,1593475200,2019,,2020,12/16/2019,6/30/2020,198,0,,1,1 +4989,Rachel Amey,University of Delaware,7/10/2020,Raffaella Margutti,Special Seminar,https://ciera.northwestern.edu/visits/rachel-amey/,1590537600,1590537600,2019,special-astronomy-seminars,2020,5/27/2020,5/27/2020,1,0,Postdoc,1,1 +4995,Kishalay De,California Institute of Technology,7/10/2020,Raffaella Margutti,Special Seminar,https://ciera.northwestern.edu/visits/kishalay-de/,1589932800,1589932800,2019,special-astronomy-seminars,2020,5/20/2020,5/20/2020,1,0,,1,1 +4445,Ugo Niccol� Di Carlo,University of Insubria,9/27/2019,Mario Spera,Visiting Scholar,https://ciera.northwestern.edu/visits/ugo-niccolo-di-carlo/,1578528000,1585094400,2019,theory-group-meetings,2020,1/9/2020,3/25/2020,77,1,,1,1 +4791,Frankie Encalada,University of Illinois,2/17/2020,HAWC+ Collaborators (Giles Novak),HAWC+ Collaborators (Giles Novak),https://ciera.northwestern.edu/visits/frankie-encalada-2/,1583107200,1584486000,2019,,2020,3/2/2020,3/17/2020,16.95833333,0,Astro Faculty,0,4 +4723,Alessandro Alberto Trani,University of Tokyo,1/21/2020,Mario Spera,,https://ciera.northwestern.edu/visits/alessandro-alberto-trani/,1582329600,1584057540,2019,,2020,2/22/2020,3/12/2020,20.99930556,1,,1,1 +4516,Allison Strom,Carnegie Observatories,10/24/2019,Sarah Wellons,Astro Seminar,https://ciera.northwestern.edu/visits/allison-strom/,1583107200,1583280000,2019,astrophysics-seminars,2020,3/2/2020,3/4/2020,3,0,,1,4 +4839,Imran Sultan,Argonne National Laboratory,2/28/2020,Claude-Andr� Faucher-Gigu�re,CAFG Collaborator and prospective graduate student,https://ciera.northwestern.edu/visits/imran-sultan/,1583193600,1583279940,2019,,2020,3/3/2020,3/3/2020,1.999305556,0,,1,1 +4790,Leslie Looney,University of Illinois,2/17/2020,HAWC+ Collaborators (Giles Novak),HAWC+ Collaborators (Giles Novak),https://ciera.northwestern.edu/visits/leslie-looney-3/,1583107200,1583190000,2019,,2020,3/2/2020,3/2/2020,1.958333333,0,,1,4 +4792,Rachel Harrison,University of Illinois,2/17/2020,HAWC+ Collaborators (Giles Novak),HAWC+ Collaborators (Giles Novak),https://ciera.northwestern.edu/visits/rachel-harrison-2/,1583107200,1583190000,2019,,2020,3/2/2020,3/2/2020,1.958333333,0,,1,4 +4722,Giuliano Iorio,University of Padova,1/21/2020,Mario Spera,Theory Group,https://ciera.northwestern.edu/visits/giuliano-iorio/,1581724800,1583020740,2019,theory-group-meetings,2020,2/15/2020,2/29/2020,15.99930556,1,,1,1 +4807,Sara Issaoun,Radboud University Nijmegen,2/21/2020,Deanne Coppejans,Theory Group,https://ciera.northwestern.edu/visits/sara-issaoun/,1582761600,1582848000,2019,theory-group-meetings,2020,2/27/2020,2/28/2020,2,1,,1,1 +5515,Brian McNamara,University of Waterloo,2/26/2020,,,https://ciera.northwestern.edu/visits/brian-mcnamara-2/,1582848000,1582848000,2019,theory-group-meetings,2020,2/28/2020,2/28/2020,1,1,,1,1 +4604,Andrew Vanderburg,"University of Texas, Austin",11/19/2019,Emily Leiner,Astro Seminar,https://ciera.northwestern.edu/visits/andrew-vanderburg/,1582502400,1582675200,2019,astrophysics-seminars,2020,2/24/2020,2/26/2020,3,0,,1,1 +4798,Irina Zhuravleva,University of Chicago,2/19/2020,Sasha Tchekhovskoy,Theory Group,https://ciera.northwestern.edu/visits/irina-zhuravleva/,1582243200,1582326000,2019,astrophysics-seminars|theory-group-meetings,2020,2/21/2020,2/21/2020,1.958333333,0,,1,1 +4745,Katie Breivik,Canadian Institute for Theoretical Astrophysics,2/3/2020,Christopher Berry,,https://ciera.northwestern.edu/visits/katie-breivik-5/,1581379200,1581638340,2019,,2020,2/11/2020,2/13/2020,3.999305556,1,,1,1 +4667,Philipp Moesta,"University of California, Berkeley",12/11/2019,Sasha Tchekhovskoy,Astro Seminar,https://ciera.northwestern.edu/visits/philipp-moesta/,1581292800,1581465600,2019,astrophysics-seminars,2020,2/10/2020,2/12/2020,3,0,,1,1 +4687,Geoffrey Ryan,University of Maryland,12/18/2019,Kate Alexander & Kerry Paterson,Observational Astro,https://ciera.northwestern.edu/visits/geoffrey-ryan/,1580601600,1581379200,2019,observational-astronomy-meetings,2020,2/2/2020,2/11/2020,10,0,Group Meeting,1,1 +4759,Jenny Bergner,University of Chicago,2/17/2020,Wen-fai Fong,JWST Workshop,https://ciera.northwestern.edu/visits/jenny-bergner/,1580947200,1581033540,2019,,2020,2/6/2020,2/6/2020,1.999305556,0,,1,1 +4665,Erica Nelson,Harvard University,12/11/2019,Luke Kelley,Astro Seminar,https://ciera.northwestern.edu/visits/erica-nelson/,1580688000,1580860800,2019,astrophysics-seminars,2020,2/3/2020,2/5/2020,3,0,,1,1 +4726,Michelle Vick,Cornell University,1/21/2020,Fred Rasio,Postdoc recruitment,https://ciera.northwestern.edu/visits/michelle-vick/,1580342400,1580687940,2019,theory-group-meetings,2020,1/30/2020,2/2/2020,4.999305556,0,,1,1 +4712,Camille Liotine,Princeton University,1/10/2020,Christopher Berry,Kalogera visitor,https://ciera.northwestern.edu/visits/camille-liotine-2/,1579824000,1580601600,2019,,2020,1/24/2020,2/2/2020,10,0,,1,1 +4599,Jackie Faherty,American Museum of Natural History,11/15/2019,Adam Miller,Astro Seminar,https://ciera.northwestern.edu/visits/jackie-faherty/,1580083200,1580256000,2019,astrophysics-seminars,2020,1/27/2020,1/29/2020,3,0,,1,1 +4727,Surabhi Sachdev,Pennsylvania State University,1/21/2020,Christopher Berry,,https://ciera.northwestern.edu/visits/surabhi-sachdev/,1579737600,1579823940,2019,,2020,1/23/2020,1/23/2020,1.999305556,0,,1,1 +4653,Sarah Vigeland,"University of Wisconsin, Milwaukee",12/10/2019,Erin Cox,Astro Seminar,https://ciera.northwestern.edu/visits/sarah-vigeland/,1579478400,1579651200,2019,astrophysics-seminars,2020,1/20/2020,1/22/2020,3,0,,1,1 +4710,Koushik Chatterjee,University of Amsterdam,1/9/2020,Sasha Tchekhovskoy,sasha visitor,https://ciera.northwestern.edu/visits/koushik-chatterjee-3/,1578960000,1579132800,2019,,2020,1/14/2020,1/16/2020,3,1,,1,1 +4543,Rosanne Di Stefano,Harvard University,11/6/2019,Kyle Kremer,Astro Seminar,https://ciera.northwestern.edu/visits/rosanne-di-stefano/,1578873600,1579046400,2019,astrophysics-seminars,2020,1/13/2020,1/15/2020,3,0,,1,1 +4675,Samuel Hinton,University of Queensland,12/16/2019,Giacomo Terreran,Margutti Visitor,https://ciera.northwestern.edu/visits/samuel-hinton/,1576540800,1576627200,2019,,2020,12/17/2019,12/18/2019,2,1,,1,2 +4677,Rick Kessler,University of Chicago,12/16/2019,Giacomo Terreran,Margutti Visitor,https://ciera.northwestern.edu/visits/rick-kessler/,1576540800,1576627200,2019,,2020,12/17/2019,12/18/2019,2,0,,1,2 +4562,Sally Laurent-Muehleisen,Illinois Institute of Technology,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/sally-laurent-muehleisen/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,Group Meeting,0,7 +4564,Carlo Segre,Illinois Institute of Technology,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/carlo-segre/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,,1,7 +4566,Paulo Acioli,Northeastern Illinois University,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/paulo-acioli/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,Astro Faculty,0,7 +4568,Jes�s Pando,DePaul University,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/jesus-pando/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,,1,7 +4570,Joe DalSanto,College of DuPage,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/joe-dalsanto/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,,1,7 +4572,Mel Sabella,Chicago State University,11/11/2019,CIERA REU Recruitment Meeting (Aaron Geller),CIERA REU recruitment meeting,https://ciera.northwestern.edu/visits/mel-sabella/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,0,,1,7 +4655,Anthony Escuadro,Harold Washington College,12/10/2019,CIERA REU Recruitment Meeting (Aaron Geller),REU Recruitment meeting,https://ciera.northwestern.edu/visits/anthony-escuadro/,1576195200,1576195200,2019,reu,2020,12/13/2019,12/13/2019,1,1,,1,7 +4602,Jeremy D. Schnittman,NASA Goddard Space Flight Center,11/18/2019,Fred Rasio,Inter. Colloquium,https://ciera.northwestern.edu/visits/jeremy-d-schnittman/,1575936000,1575936000,2019,interdisciplinary-colloquia,2020,12/10/2019,12/10/2019,1,0,Astro Faculty,0,1 +4326,Devina Misra,Universit� de Gen�ve,8/15/2019,Vicky Kalogera,Visiting Pre-Doc,https://ciera.northwestern.edu/visits/devina-misra/,1565222400,1575590400,2018,,2019,8/8/2019,12/6/2019,121,1,Astro Faculty,1,5 +4616,Matthew Orr,California Institute of Technology,11/21/2019,Claude-Andr� Faucher-Gigu�re,CAFG Visitor,https://ciera.northwestern.edu/visits/matthew-orr/,1575244800,1575590400,2019,,2020,12/2/2019,12/6/2019,5,0,Group Meeting,0,3 +4500,Emmanuel Fonseca,McGill University,10/16/2019,Sasha Tchekhovskoy,Astro Seminar,https://ciera.northwestern.edu/visits/emmanuel-fonseca/,1575244800,1575417600,2019,astrophysics-seminars,2020,12/2/2019,12/4/2019,3,1,,1,3 +4627,Robert Caldwell,Dartmouth College,11/22/2019,Shane Larson,Larson Visitor,https://ciera.northwestern.edu/visits/robert-caldwell/,1575244800,1575244800,2019,,2020,12/2/2019,12/2/2019,1,0,Postdoc,0,3 +4278,Jason Dexter,University of Colorado,7/10/2019,Sasha Tchekhovskoy,Astro Seminar,https://ciera.northwestern.edu/visits/jason-dexter-2/,1574640000,1574812800,2019,astrophysics-seminars,2020,11/25/2019,11/27/2019,3,0,,1,3 +4306,Ting Li,Carnegie Observatories,8/6/2019,Kerry Paterson,Obs Astro,https://ciera.northwestern.edu/visits/ting-li/,1574640000,1574640000,2019,observational-astronomy-meetings,2020,11/25/2019,11/25/2019,1,0,Astro Faculty,0,3 +4417,Matthew Digman,Ohio State University,9/12/2019,Deanne Coppejans,Obs Astro,https://ciera.northwestern.edu/visits/matthew-digman/,1574640000,1574640000,2019,observational-astronomy-meetings,2020,11/25/2019,11/25/2019,1,0,Group Meeting,0,3 +4504,Tiffany Lewis,University of Haifa/Tel Aviv University,10/17/2019,Sasha Tchekhovskoy / Ian Christie,Theory Group,https://ciera.northwestern.edu/visits/tiffany-lewis/,1574208000,1574380800,2019,theory-group-meetings,2020,11/20/2019,11/22/2019,3,1,,1,1 +4541,Chad Bustard,University of Wisconsin-Madison,11/5/2019,Farhad Yusef-Zadeh,Theory Group,https://ciera.northwestern.edu/visits/chad-bustard/,1574380800,1574380800,2019,theory-group-meetings,2020,11/22/2019,11/22/2019,1,0,Postdoc,0,1 +4450,Alexander Rasskazov,Eotvos Lorand University of Budapest,10/1/2019,Giacomo Fragione,Theory Group,https://ciera.northwestern.edu/visits/alexander-rasskazov-2/,1573689600,1574035200,2019,theory-group-meetings,2020,11/14/2019,11/18/2019,5,1,,1,1 +4542,Marco Berton,Finnish Center for Astronomy with the European Organisation for Astronomical Research in the Southern Hemisphere / University of Turku,11/6/2019,Giacomo Terreran,Research Collaborator,https://ciera.northwestern.edu/visits/marco-berton-2/,1573776000,1574035200,2019,,2020,11/15/2019,11/18/2019,4,1,Group Meeting,0,1 +4340,Sukrit Ranjan,Massachusetts Institute of Technology,8/20/2019,CIERA,,https://ciera.northwestern.edu/visits/sukrit-ranjan-8/,1573430400,1573776000,2019,,2020,11/11/2019,11/15/2019,5,0,,1,3 +4537,Lisa Winter,National Science Foundation,11/4/2019,Raffaella Margutti,Margutti Visitor,https://ciera.northwestern.edu/visits/lisa-winter/,1573430400,1573776000,2019,,2020,11/11/2019,11/15/2019,5,0,,1,3 +4274,Abigail Polin,"University of California, Berkeley",7/9/2019,Raffaella Margutti,Obs Astro,https://ciera.northwestern.edu/visits/abigail-polin/,1573171200,1573516800,2019,observational-astronomy-meetings,2020,11/8/2019,11/12/2019,5,0,,1,1 +4285,Jane Huang,Harvard University,7/19/2019,Kate Alexander (TBC),Obs Astro,https://ciera.northwestern.edu/visits/jane-huang/,1573430400,1573430400,2019,observational-astronomy-meetings,2020,11/11/2019,11/11/2019,1,0,,1,3 +4499,Bhusan Kayastha,University of Chinese Academy of Sciences and National Astronomical Observatories,10/15/2019,Aaron Geller,Theory group,https://ciera.northwestern.edu/visits/bhusan-kayastha/,1572652800,1573257600,2019,theory-group-meetings,2020,11/2/2019,11/9/2019,8,1,Postdoc,0,1 +4383,Siddharth Soni,Louisiana State University,9/6/2019,Scott Coughlin,Special Seminar,https://ciera.northwestern.edu/visits/siddharth-soni/,1572825600,1573171200,2019,special-astronomy-seminars,2020,11/4/2019,11/8/2019,5,0,Postdoc,0,4 +4422,Ileyk El Mellah,KU Leuven,9/17/2019,Sasha Tchekhovskoy,Theory Group,https://ciera.northwestern.edu/visits/ileyk-el-mellah/,1572825600,1573171200,2019,theory-group-meetings,2020,11/4/2019,11/8/2019,5,1,,1,4 +4235,Maria Petropoulou,Princeton University,6/20/2019,Ian Christie,Astro Seminar,https://ciera.northwestern.edu/visits/maria-petropoulou/,1572825600,1572998400,2019,astrophysics-seminars,2020,11/4/2019,11/6/2019,3,0,Postdoc,0,4 +4288,Arianna Renzini,Imperial College London,7/22/2019,Michael Katz,Special Seminar,https://ciera.northwestern.edu/visits/arianna-renzini/,1572825600,1572912000,2019,special-astronomy-seminars,2020,11/4/2019,11/5/2019,2,1,,1,4 +4443,Camille Liotine,Princeton University,9/25/2019,Vicky Kalogera,Vicky Visitor,https://ciera.northwestern.edu/visits/camille-liotine/,1572220800,1572566400,2019,,2020,10/28/2019,11/1/2019,5,0,Postdoc,0,3 +4530,Joseph Burchett,"University of California, Santa Cruz",10/31/2019,Jonathan Stern,CAFG Visitor,https://ciera.northwestern.edu/visits/joseph-burchett/,1572480000,1572480000,2019,,2020,10/31/2019,10/31/2019,1,0,Postdoc,0,1 +4324,Simone Bavera,Universit� de Gen�ve,8/15/2019,Vicky Kalogera,Visiting Pre-Doc,https://ciera.northwestern.edu/visits/simone-bavera/,1565222400,1572393600,2018,,2019,8/8/2019,10/30/2019,84,1,Postdoc,1,5 +4232,Jennifer Marshall,Texas A&M University,6/20/2019,Giles Novak,Astro Seminar,https://ciera.northwestern.edu/visits/jennifer-marshall/,1572220800,1572393600,2019,astrophysics-seminars,2020,10/28/2019,10/30/2019,3,0,Astro Faculty,0,3 +4218,Ashley Villar,Harvard University,6/18/2019,Raffaella Margutti,Observational Astro,https://ciera.northwestern.edu/visits/ashley-villar/,1572134400,1572307200,2019,observational-astronomy-meetings,2020,10/27/2019,10/29/2019,3,0,Postdoc,0,1 +4385,Charles D Kilpatrick,"University of California, Santa Cruz",9/9/2019,Kerry Paterson,Observational Astronomy,https://ciera.northwestern.edu/visits/charles-d-kilpatrick/,1572220800,1572220800,2019,observational-astronomy-meetings,2020,10/28/2019,10/28/2019,1,0,Postdoc,0,3 +4512,Alexander Stephan,"University of California, Los Angeles",10/22/2019,Fred Rasio,Theory Group,https://ciera.northwestern.edu/visits/alexander-stephan/,1571961600,1571961600,2019,theory-group-meetings,2020,10/25/2019,10/25/2019,1,0,Astro Faculty,0,1 +4187,Priyamvada Natarajan,Yale University,6/5/2019,Vicky Kalogera,Annual Public Lecture,https://ciera.northwestern.edu/visits/priyamvada-natarajan/,1571875200,1571875200,2019,ciera-annual-public-lectures,2020,10/24/2019,10/24/2019,1,0,Postdoc,0,1 +4434,Joe Bright,University of Oxford,9/24/2019,Raffaella Margutti,Special Seminar,https://ciera.northwestern.edu/visits/joe-bright/,1571270400,1571443200,2019,special-astronomy-seminars,2020,10/17/2019,10/19/2019,3,1,Group Meeting,0,2 +4361,Evgeni Grishin,Technion (Haifa),8/30/2019,Giacomo Fragione,Theory Group,https://ciera.northwestern.edu/visits/evgeni-grishin/,1571270400,1571356800,2019,theory-group-meetings,2020,10/17/2019,10/18/2019,2,1,Group Meeting,0,2 +4237,Laura Blecha,University of Florida,6/20/2019,Luke Kelley,Astro Seminar,https://ciera.northwestern.edu/visits/laura-blecha-2/,1571011200,1571184000,2019,astrophysics-seminars,2020,10/14/2019,10/16/2019,3,0,Astro Faculty,0,1 +4452,Daniel Stark,University of Arizona,10/1/2019,Wen-fai Fong,Theory group,https://ciera.northwestern.edu/visits/daniel-stark/,1570665600,1570752000,2019,theory-group-meetings,2020,10/10/2019,10/11/2019,2,0,Postdoc,0,1 +4276,Matthew McQuinn,University of Washington,7/9/2019,Jonathan Stern,Astro Seminar,https://ciera.northwestern.edu/visits/matthew-mcquinn/,1570406400,1570579200,2019,astrophysics-seminars,2020,10/7/2019,10/9/2019,3,0,Astro Faculty,0,1 +4339,Sukrit Ranjan,Massachusetts Institute of Technology,8/20/2019,CIERA,,https://ciera.northwestern.edu/visits/sukrit-ranjan-7/,1569801600,1570147200,2019,,2020,9/30/2019,10/4/2019,5,0,Other Faculty,1,2 +4424,Ore Gottlieb,Tel Aviv University,9/17/2019,Sasha Tchekhovskoy,oregottlieb@gmail.com,https://ciera.northwestern.edu/visits/ore-gottlieb/,1569888000,1570147200,2019,theory-group-meetings,2020,10/1/2019,10/4/2019,4,1,Group Meeting,0,1 +4432,Peter Nugent,"University of California, Berkeley",9/24/2019,Raffaella Margutti,Misc. Visitor,https://ciera.northwestern.edu/visits/peter-nugent/,1570060800,1570060800,2019,,2020,10/3/2019,10/3/2019,1,0,Postdoc,0,1 +4228,Ray Jayawardhana,Cornell University,6/20/2019,Fred Rasio,Astro Seminar,https://ciera.northwestern.edu/visits/ray-jayawardhana/,1569801600,1569974400,2019,astrophysics-seminars,2020,9/30/2019,10/2/2019,3,0,Group Meeting,0,2 +4451,Maya Fishbach,University of Chicago,10/1/2019,Vicky Kalogera,LIGO Visitor,https://ciera.northwestern.edu/visits/maya-fishbach-2/,1569974400,1569974400,2019,,2020,10/2/2019,10/2/2019,1,0,Astro Faculty,0,1 +4300,Kaew Samaporn Tinyanont,California Institute of Technology,8/1/2019,Raffaella Margutti,Obs Astro Visitor,https://ciera.northwestern.edu/visits/kaew-samaporn-tinyanont/,1569715200,1569888000,2019,observational-astronomy-meetings,2020,9/29/2019,10/1/2019,3,0,Postdoc,0,1 +4379,Carl Rodriguez,Harvard University,9/6/2019,Binary Evolution Workshop (Kyle Kremer),Binary Evolution Workshop,https://ciera.northwestern.edu/visits/carl-rodriguez-4/,1569369600,1569628800,2019,,2020,9/25/2019,9/28/2019,4,0,Astro Faculty,0,2 +4380,Katie Breivik,Canadian Institute for Theoretical Astrophysics,9/6/2019,Binary Evolution Workshop (Kyle Kremer),Binary Evolution Workshop,https://ciera.northwestern.edu/visits/katie-breivik-4/,1569369600,1569628800,2019,,2020,9/25/2019,9/28/2019,4,1,Group Meeting,0,2 +4230,Emily Levesque,University of Washington,6/20/2019,Cliff Johnson,Astro Seminar,https://ciera.northwestern.edu/visits/emily-levesque/,1569196800,1569369600,2019,astrophysics-seminars,2020,9/23/2019,9/25/2019,3,0,Group Meeting,0,1 +4382,Jeff Andrews,Columbia University,9/6/2019,Psylib Meeting (Vicky Kalogera),Psylib Meeting,https://ciera.northwestern.edu/visits/jeff-andrews-9/,1567900800,1568419200,2019,,2020,9/8/2019,9/14/2019,7,0,,1,1 +4342,Tassos Fragos,University of Geneva,8/20/2019,Psylib Meeting (Vicky Kalogera),Vicky Collaborator,https://ciera.northwestern.edu/visits/tassos-fragos-7/,1567987200,1568073600,2019,,2020,9/9/2019,9/10/2019,2,1,Group Meeting,0,5 +4343,Emmanouil Zapartas,University of Geneva,8/20/2019,Psylib Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/emmanouil-zapartas/,1567987200,1568073600,2019,,2020,9/9/2019,9/10/2019,2,1,,1,5 +4345,Nam-Hai Tran,University of Geneva,8/20/2019,Psylib Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/nam-hai-tran/,1567987200,1568073600,2019,,2020,9/9/2019,9/10/2019,2,1,,1,5 +4346,Aaron Dotter,Harvard University,8/20/2019,Psylib Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/aaron-dotter/,1567987200,1568073600,2019,,2020,9/9/2019,9/10/2019,2,0,Astro Faculty,0,5 +4348,Xu Teng,Iowa State University,8/20/2019,Psylib Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/xu-teng/,1567987200,1568073600,2019,,2020,9/9/2019,9/10/2019,2,0,Group Meeting,0,5 +4188,Andrew J. Connolly,University of Washington / DIRAC Institute,6/5/2019,Hot-Wired (Raffaella Margutti),Hotwired Public Lecture,https://ciera.northwestern.edu/visits/andrew-j-connolly/,1566345600,1566345600,2018,,2019,8/21/2019,8/21/2019,1,0,,1,1 +4313,Doyal A. Harper,University of Chicago,8/6/2019,HAWC+ Papers Meeting (Marc Berthoud),HAWC+ Papers Meeting,https://ciera.northwestern.edu/visits/doyal-a-harper/,1565568000,1565568000,2018,,2019,8/12/2019,8/12/2019,1,0,Postdoc,0,3 +4314,Charlie Telesco,University of Florida,8/6/2019,HAWC+ Papers Meeting (Marc Berthoud), HAWC+ papers Meeting,https://ciera.northwestern.edu/visits/charlie-telesco-2/,1565568000,1565568000,2018,,2019,8/12/2019,8/12/2019,1,0,,1,3 +4315,Dylan Sukay,University of Chicago,8/6/2019,HAWC+ Papers Meeting (Marc Berthoud),HAWC+ papers Meeting,https://ciera.northwestern.edu/visits/dylan-sukay/,1565568000,1565568000,2018,,2019,8/12/2019,8/12/2019,1,0,,1,3 +4308,Leslie Looney,University of Illinois,8/6/2019,SOFIA-ALMA Ophiuchus Collaboration (Giles Novak),SOFIA-ALMA Ophiuchus collaboration,https://ciera.northwestern.edu/visits/leslie-looney-2/,1565222400,1565222400,2018,,2019,8/8/2019,8/8/2019,1,0,Postdoc,0,5 +4309,Frankie Encalada,University of Illinois,8/6/2019,SOFIA-ALMA Ophiuchus Collaboration (Giles Novak),SOFIA-ALMA Ophiuchus Collaboration,https://ciera.northwestern.edu/visits/frankie-encalada/,1565222400,1565222400,2018,,2019,8/8/2019,8/8/2019,1,0,Group Meeting,1,5 +4310,Rachel Harrison,University of Illinois,8/6/2019,SOFIA-ALMA Ophiuchus Collaboration (Giles Novak),,https://ciera.northwestern.edu/visits/rachel-harrison/,1565222400,1565222400,2018,,2019,8/8/2019,8/8/2019,1,0,Postdoc,0,5 +4208,Katie Breivik,Canadian Institute for Theoretical Astrophysics,6/11/2019,Vicky Kalogera,,https://ciera.northwestern.edu/visits/katie-breivik-3/,1564444800,1564704000,2018,,2019,7/30/2019,8/2/2019,4,1,Group Meeting,0,2 +4296,Ben Tofflemire,"University of Texas, Austin",7/29/2019,Emily Leiner,,https://ciera.northwestern.edu/visits/ben-tofflemire/,1564617600,1564704000,2018,,2019,8/1/2019,8/2/2019,2,0,Group Meeting,0,1 +4295,Will Farr,Center for Computational Astrophysics / Stony Brook University,7/29/2019,Christopher Berry,LIGO Visitor,https://ciera.northwestern.edu/visits/will-farr-3/,1564444800,1564531200,2018,,2019,7/30/2019,7/31/2019,2,0,Postdoc,0,2 +4299,Derek Davis,Syracuse University,8/1/2019,Eve Chase,LIGO Visitor,https://ciera.northwestern.edu/visits/derek-davis-2/,1564531200,1564531200,2018,,2019,7/31/2019,7/31/2019,1,0,Group Meeting,0,1 +4117,Laura Fissel,National Radio Astronomy Observatory,5/22/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),Special Seminar / BLAST-TNG Pre-flight Planning Meeting,https://ciera.northwestern.edu/visits/laura-fissel-2/,1560124800,1560470400,2018,special-astronomy-seminars,2019,6/10/2019,6/14/2019,5,0,Postdoc,0,7 +4118,Javier Romualdez,University of Toronto / University of Pennsylvania,5/22/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),BLAST-TNG Pre-flight Planning Meeting,https://ciera.northwestern.edu/visits/javier-romualdez/,1560124800,1560470400,2018,,2019,6/10/2019,6/14/2019,5,1,Astro Faculty,0,7 +4120,Ian Lowe,University of Pennsylvania,5/22/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),BLAST-TNG Pre-flight Planning Meeting,https://ciera.northwestern.edu/visits/ian-lowe/,1560124800,1560470400,2018,,2019,6/10/2019,6/14/2019,5,0,Group Meeting,0,7 +4121,Gabriele Coppi,University of Pennsylvania,5/22/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),BLAST-TNG Pre-flight Planning Meeting,https://ciera.northwestern.edu/visits/gabriele-coppi/,1560124800,1560470400,2018,,2019,6/10/2019,6/14/2019,5,0,Group Meeting,0,7 +4123,Adrian Sinclair,Arizona State University,5/22/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),BLAST-TNG Pre-flight Planning Meeting,https://ciera.northwestern.edu/visits/adrian-sinclair/,1560124800,1560470400,2018,,2019,6/10/2019,6/14/2019,5,0,Group Meeting,0,7 +4190,Anthony Corso,University of Pennsylvania,6/5/2019,BLAST-TNG Pre-flight Planning Meeting (Paul Williams),Novak Visitor,https://ciera.northwestern.edu/visits/anthony-corso/,1560124800,1560470400,2018,,2019,6/10/2019,6/14/2019,5,0,Postdoc,0,7 +3809,Anna Ho,California Institute of Technology,3/7/2019,Kate Alexander,Observational Astro Speaker,https://ciera.northwestern.edu/visits/anna-ho/,1560124800,1560124800,2018,observational-astronomy-meetings,2019,6/10/2019,6/10/2019,1,0,Postdoc,0,7 +4136,Anna Chashkina,University of Turku,5/28/2019,Sasha Tchekhovskoy,Sasha Visitor,https://ciera.northwestern.edu/visits/anna-chashkina/,1559001600,1559260800,2018,,2019,5/28/2019,5/31/2019,4,1,Astro Faculty,0,3 +4139,Pavel Abolmasov,University of Turku,5/28/2019,Sasha Tchekhovskoy,Sasha Visitor,https://ciera.northwestern.edu/visits/pavel-abolmasov/,1559001600,1559260800,2018,,2019,5/28/2019,5/31/2019,4,1,Postdoc,0,3 +4138,Koushik Chatterjee,University of Amsterdam,5/28/2019,Sasha Tchekhovskoy,Sasha Visitor / Theory Group,https://ciera.northwestern.edu/visits/koushik-chatterjee-2/,1559174400,1559260800,2018,theory-group-meetings,2019,5/30/2019,5/31/2019,2,1,Group Meeting,0,1 +3936,Dimitri Veras,University of Warwick,4/16/2019,Yoram Lithwick,Theory Group Seminar,https://ciera.northwestern.edu/visits/dimitri-veras/,1559260800,1559260800,2018,theory-group-meetings,2019,5/31/2019,5/31/2019,1,1,Group Meeting,0,1 +3828,Dennis Schatz,Pacific Science Center / National Science Teaching Association,3/15/2019,Michelle Paulsen,Interdisciplinary Colloquium,https://ciera.northwestern.edu/visits/dennis-schatz/,1559001600,1559174400,2018,interdisciplinary-colloquia,2019,5/28/2019,5/30/2019,3,1,Postdoc,0,3 +2413,Jim Fuller,California Institute of Technology,11/12/2018,Sasha Tchekhovskoy,Astro Seminar,https://ciera.northwestern.edu/visits/jim-fuller-2/,1558915200,1559088000,2018,astrophysics-seminars,2019,5/27/2019,5/29/2019,3,0,Postdoc,0,1 +4104,Thomas Kupfer,"University of California, Santa Barbara",5/20/2019,Shane Larson,Shane Larson Visitor,https://ciera.northwestern.edu/visits/thomas-kupfer/,1558569600,1559001600,2018,,2019,5/23/2019,5/28/2019,6,0,Postdoc,0,1 +1830,Nathan Smith,University of Arizona,10/19/2018,Cliff Johnson,Astro Seminar,https://ciera.northwestern.edu/visits/nathan-smith/,1558310400,1558483200,2018,astrophysics-seminars,2019,5/20/2019,5/22/2019,3,0,Postdoc,0,1 +3997,Jay Strader,Michigan State University,4/22/2019,Cliff Johnson / Pulsar Workshop (Shi Ye),Astro Seminar / Pulsar Workshop,https://ciera.northwestern.edu/visits/jay-strader-4/,1557705600,1557878400,2018,astrophysics-seminars,2019,5/13/2019,5/15/2019,3,0,Astro Faculty,0,6 +4004,Brett Bolen,Grand Valley State University,4/23/2019,Shane Larson,Shane Larson Visitor,https://ciera.northwestern.edu/visits/brett-bolen-2/,1557878400,1557878400,2018,,2019,5/15/2019,5/15/2019,1,0,Astro Faculty,0,2 +5521,Ryan Chornock,Ohio University,5/26/2019,,,https://ciera.northwestern.edu/visits/ryan-chornock/,1557878400,1557878400,2018,special-astronomy-seminars,2019,5/15/2019,5/15/2019,1,0,Postdoc,0,2 +3995,Scott Ransom,National Radio Astronomy Observatory / University of Virginia,4/22/2019,Fred Rasio / Pulsar Workshop (Shi Ye),Interdisciplinary Colloquium / Pulsar Workshop,https://ciera.northwestern.edu/visits/scott-ransom-2/,1557705600,1557792000,2018,interdisciplinary-colloquia,2019,5/13/2019,5/14/2019,2,1,Postdoc,0,6 +3998,Steinn Sigurdsson,Pennsylvania State University,4/22/2019,Pulsar Workshop (Shi Ye),,https://ciera.northwestern.edu/visits/steinn-sigurdsson-2/,1557705600,1557792000,2018,,2019,5/13/2019,5/14/2019,2,0,Postdoc,0,6 +3999,Tom Maccarone,Texas Tech University,4/22/2019,Pulsar Workshop (Shi Ye),,https://ciera.northwestern.edu/visits/tom-maccarone-2/,1557705600,1557792000,2018,,2019,5/13/2019,5/14/2019,2,0,Postdoc,0,6 +4000,Carl Rodriguez,Massachusetts Institute of Technology,4/22/2019,Pulsar Workshop (Shi Ye),,https://ciera.northwestern.edu/visits/carl-rodriguez-3/,1557705600,1557792000,2018,,2019,5/13/2019,5/14/2019,2,0,Astro Faculty,0,6 +4002,Jeff Andrews,"University of Copenhagen, Denmark",4/22/2019,Pulsar Workshop (Shi Ye),,https://ciera.northwestern.edu/visits/jeff-andrews-8/,1557705600,1557792000,2018,,2019,5/13/2019,5/14/2019,2,1,Astro Faculty,0,6 +4003,Nick Gnedin,Fermi National Accelerator Laboratory / University of Chicago,4/23/2019,Claude-Andr� Faucher-Gigu�re (UofChicago Meeting),CAFG UofChicago Meeting,https://ciera.northwestern.edu/visits/nick-gnedin-3/,1557792000,1557792000,2018,,2019,5/14/2019,5/14/2019,1,0,Astro Faculty,0,1 +3813,Erik Curiel,Munich Center for Mathematical Philosophy / Harvard University,3/11/2019,Sandy Zabell,Interdisciplinary Colloquium,https://ciera.northwestern.edu/visits/erik-curiel/,1557273600,1557446400,2018,interdisciplinary-colloquia,2019,5/8/2019,5/10/2019,3,1,Astro Faculty,0,1 +5517,Fiona Harrison,California Institute of Technology,5/26/2019,,,https://ciera.northwestern.edu/visits/fiona-harrison/,1557446400,1557446400,2018,theory-group-meetings,2019,5/10/2019,5/10/2019,1,0,Postdoc,0,1 +2109,Leo C. Stein,University of Mississippi,11/2/2018,Diego Munoz,AstroSeminar,https://ciera.northwestern.edu/visits/leo-c-stein/,1557100800,1557273600,2018,astrophysics-seminars,2019,5/6/2019,5/8/2019,3,0,Postdoc,0,2 +3826,Randolf Klein,Universities Space Research Association / NASA Ames Research Center,3/15/2019,Giles Novak,Observational Astro,https://ciera.northwestern.edu/visits/randolf-klein/,1557100800,1557100800,2018,observational-astronomy-meetings,2019,5/6/2019,5/6/2019,1,1,Postdoc,0,2 +5516,David Spergel,Princeton University,10/26/2020,,,https://ciera.northwestern.edu/visits/david-spergel-2/,1556841600,1556841600,2018,theory-group-meetings,2019,5/3/2019,5/3/2019,1,0,Astro Faculty,0,1 +2092,Elisa Quintana,NASA Goddard Space Flight Center,10/31/2018,Erin Cox,Astro Seminar,https://ciera.northwestern.edu/visits/elisa-quintana/,1556496000,1556668800,2018,astrophysics-seminars,2019,4/29/2019,5/1/2019,3,0,Grad Student,1,1 +3917,Abigail Stevens,Michigan State University,4/12/2019,Sasha Tchekhovskoy,Theory Group Speaker,https://ciera.northwestern.edu/visits/abigail-stevens/,1556150400,1556323200,2018,theory-group-meetings,2019,4/25/2019,4/27/2019,3,0,Astro Faculty,0,1 +3348,Sukrit Ranjan,Massachusetts Institute of Technology,1/24/2019,CIERA,Visiting Fellow,https://ciera.northwestern.edu/visits/sukrit-ranjan-6/,1556064000,1556236800,2018,theory-group-meetings,2019,4/24/2019,4/26/2019,3,0,Astro Faculty,0,1 +3892,Charlie Telesco,University of Florida,4/9/2019,Marc Berthoud,Observational Astro Speaker,https://ciera.northwestern.edu/visits/charlie-telesco/,1555891200,1555891200,2018,observational-astronomy-meetings,2019,4/22/2019,4/22/2019,1,0,Group Meeting,0,1 +3919,Maxim Barkov,Purdue University,4/12/2019,Sasha Tchekhovskoy,Theory Group Speaker,https://ciera.northwestern.edu/visits/maxim-barkov/,1555632000,1555632000,2018,theory-group-meetings,2019,4/19/2019,4/19/2019,1,0,Astro Faculty,0,1 +2298,Simone Scaringi,Texas Tech University,11/7/2018,Deanne Coppejans,Astro Seminar,https://ciera.northwestern.edu/visits/simone-scaringi/,1555286400,1555459200,2018,astrophysics-seminars,2019,4/15/2019,4/17/2019,3,0,Astro Faculty,0,2 +3933,Nicholas Stone,University of Maryland,4/15/2019,Diego Munoz,Journal Club,https://ciera.northwestern.edu/visits/nicholas-stone-2/,1555286400,1555372800,2018,,2019,4/15/2019,4/16/2019,2,0,,1,2 +3890,Knox Long,Space Telescope Science Institute,4/8/2019,Deanne Coppejans,Coppejans Visitor,https://ciera.northwestern.edu/visits/knox-long/,1555372800,1555372800,2018,,2019,4/16/2019,4/16/2019,1,0,Postdoc,0,1 +5520,Sarah Rugheimer,Oxford University,4/26/2019,,,https://ciera.northwestern.edu/visits/sarah-rugheimer/,1555027200,1555027200,2018,theory-group-meetings,2019,4/12/2019,4/12/2019,1,1,Group Meeting,0,1 +3811,Vikram Ravi,California Institute of Technology,3/11/2019,Sasha Tchekhovskoy,Astro Seminar Speaker,https://ciera.northwestern.edu/visits/vikram-ravi/,1554681600,1554854400,2018,astrophysics-seminars,2019,4/8/2019,4/10/2019,3,0,Group Meeting,0,1 +1904,Sean Raymond,Laboratoire d'Astrophysique de Bordeaux,10/24/2018,Seth Jacobson,,https://ciera.northwestern.edu/visits/sean-raymond/,1554076800,1554163200,2018,,2019,4/1/2019,4/2/2019,2,1,Astro Faculty,0,1 +3832,Sebastian Perez,Universidad de Santiago de Chile,3/20/2019,Diego Munoz,Special Seminar,https://ciera.northwestern.edu/visits/sebastian-perez/,1553817600,1553817600,2018,special-astronomy-seminars,2019,3/29/2019,3/29/2019,1,1,Astro Faculty,0,1 +3808,Kai Staats,Laser Interferometer Gravitational-Wave Observatory,3/7/2019,Christopher Berry,LIGO Group Visitor,https://ciera.northwestern.edu/visits/kai-staats-4/,1553126400,1553299200,2018,,2019,3/21/2019,3/23/2019,3,0,Postdoc,0,2 +3750,Alessandra Buonanno,Max Planck Institute for Gravitational Physics,2/26/2019,Christopher Berry,LIGO Group Visitor (Covered by Vicky Kalogera),https://ciera.northwestern.edu/visits/alessandra-buonanno/,1553126400,1553212800,2018,,2019,3/21/2019,3/22/2019,2,1,Grad Student,0,2 +3462,Vivien Raymond,Cardiff University,2/5/2019,Christopher Berry,LIGO Group visitor (Covered by Vicky Kalogera),https://ciera.northwestern.edu/visits/vivien-raymond-2/,1553212800,1553212800,2018,,2019,3/22/2019,3/22/2019,1,1,Astro Faculty,0,3 +3520,Martin Hendry,University of Glasgow,2/8/2019,Shane Larson,Larson Visitor,https://ciera.northwestern.edu/visits/martin-hendry/,1553212800,1553212800,2018,,2019,3/22/2019,3/22/2019,1,1,Postdoc,0,3 +3834,Michael Coughlin,California Institute of Technology,3/21/2019,Scott Coughlin,LIGO Visitor,https://ciera.northwestern.edu/visits/michael-coughlin/,1553212800,1553212800,2018,,2019,3/22/2019,3/22/2019,1,0,Group Meeting,0,3 +2721,Eric Thrane,Monash University,11/26/2018,Christopher Berry,LIGO Visitor,https://ciera.northwestern.edu/visits/eric-thrane/,1552262400,1552694400,2018,,2019,3/11/2019,3/16/2019,6,1,Astro Faculty,0,1 +3436,Stefan Danilishin,Laser Interferometer Gravitational-Wave Observatory,2/4/2019,Selim Shahriar,Interdisciplinary Colloquium,https://ciera.northwestern.edu/visits/stefan-danilishin/,1552608000,1552608000,2018,interdisciplinary-colloquia,2019,3/15/2019,3/15/2019,1,0,Astro Faculty,0,1 +3517,Andrea Lommen,Haverford College,2/8/2019,Shane Larson,Larson Visitor,https://ciera.northwestern.edu/visits/andrea-lommen/,1551744000,1552003200,2018,,2019,3/5/2019,3/8/2019,4,0,Postdoc,0,1 +1754,Sean Andrews,Harvard University,10/9/2018,Erin Cox,Astro Seminar,https://ciera.northwestern.edu/visits/sean-andrews/,1551657600,1551830400,2018,astrophysics-seminars,2019,3/4/2019,3/6/2019,3,0,Astro Faculty,0,1 +3347,Sukrit Ranjan,Massachusetts Institute of Technology,1/24/2019,CIERA,Visiting Scholar,https://ciera.northwestern.edu/visits/sukrit-ranjan-5/,1551052800,1551398400,2018,,2019,2/25/2019,3/1/2019,5,0,Astro Faculty,0,2 +1423,Gustavo Soares,University of S�o Paulo,9/7/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/gustavo-soares/,1535932800,1551312000,2018,,2019,9/3/2018,2/28/2019,179,1,Astro Faculty,0,1 +1730,Yanqin Wu,University of Toronto,10/2/2018,Yoram Lithwick,Astro Seminar,https://ciera.northwestern.edu/visits/yanqin-wu/,1551052800,1551225600,2018,astrophysics-seminars,2019,2/25/2019,2/27/2019,3,1,Postdoc,0,2 +3252,Miguel Holgado,"University of Illinois, Urbana-Champaign",12/17/2018,Michael Zevin,Graduate Visitor (Luke Kelley),https://ciera.northwestern.edu/visits/miguel-holgado/,1551139200,1551225600,2018,,2019,2/26/2019,2/27/2019,2,0,Postdoc,0,1 +3627,Sumit Sarbadhicary,Michigan State University,2/19/2019,Raffaella Margutti,Margutti Collaborator,https://ciera.northwestern.edu/visits/sumit-sarbadhicary-2/,1551225600,1551225600,2018,,2019,2/27/2019,2/27/2019,1,0,Astro Faculty,0,1 +5518,Marc Kamionkowski,Johns Hopkins University,2/26/2019,,,https://ciera.northwestern.edu/visits/marc-kamionkowsk/,1550793600,1550793600,2018,theory-group-meetings,2019,2/22/2019,2/22/2019,1,0,Astro Faculty,0,1 +2095,Erin Kara,University of Maryland,11/1/2018,Luke Kelley,Astro Seminar,https://ciera.northwestern.edu/visits/erin-kara/,1550448000,1550620800,2018,astrophysics-seminars,2019,2/18/2019,2/20/2019,3,0,Other Faculty,1,1 +1828,Adam Leroy,Ohio State University,10/19/2018,Cliff Johnson,Astro Speaker,https://ciera.northwestern.edu/visits/adam-leroy/,1549843200,1550016000,2018,astrophysics-seminars,2019,2/11/2019,2/13/2019,3,0,Postdoc,0,1 +3324,Drummond Fielding,"University of California, Berkeley",1/22/2019,Jonathan Stern,CAFG Visitor,https://ciera.northwestern.edu/visits/drummond-fielding-2/,1549411200,1549584000,2018,,2019,2/6/2019,2/8/2019,3,0,Astro Faculty,0,1 +3489,Reed Essick,University of Chicago,2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/reed-essick/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Astro Faculty,0,10 +3491,Maya Fishbach,University of Chicago,2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/maya-fishbach/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Group Meeting,0,10 +3493,Daniel Holz,University of Chicago,2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/daniel-holz-2/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Group Meeting,0,10 +3494,Phil Landry,University of Chicago,2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/phil-landry/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Group Meeting,0,10 +3496,Zoheyr Doctor,University of Chicago,2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/zoheyr-doctor-3/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Astro Faculty,0,10 +3498,Patrick Brady,"University of Wisconsin, Milwaukee",2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/patrick-brady-3/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Postdoc,0,10 +3500,Siddharth Mohite,"University of Wisconsin, Milwaukee",2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/siddharth-mohite/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Other Faculty,0,10 +3501,Sin�ad Walsh,"University of Wisconsin, Milwaukee",2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/sinead-walsh/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Astro Faculty,0,10 +3503,Caitlin Rose,"University of Wisconsin, Milwaukee",2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/caitlin-rose/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Astro Faculty,0,10 +3504,Shasvath Kapadia,"University of Wisconsin, Milwaukee",2/7/2019,LSC Meeting (Christopher Berry),,https://ciera.northwestern.edu/visits/shasvath-kapadia/,1549584000,1549584000,2018,,2019,2/8/2019,2/8/2019,1,0,Postdoc,0,10 +1752,Ana Bonaca,Harvard University,10/8/2018,Claude-Andr� Faucher-Gigu�re,Astro Seminar,https://ciera.northwestern.edu/visits/ana-bonaca/,1549238400,1549411200,2018,astrophysics-seminars,2019,2/4/2019,2/6/2019,3,0,Group Meeting,0,1 +3445,Joshua Smith,"California State University, Fullerton",2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/joshua-smith-4/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Group Meeting,0,6 +3447,Kevin Crowston,Syracuse University,2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/kevin-crowston-3/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Postdoc,0,6 +3448,Carsten Oesterlund,Syracuse University,2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/carsten-oesterlund-3/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Astro Faculty,0,6 +3449,Mahboobeh Harandi,Syracuse University,2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/mahboobeh-harandi/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Astro Faculty,0,6 +3450,Laura Trouille,Adler Planetarium,2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/laura-trouille-4/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Postdoc,0,6 +3451,Oli Patane,California Institute of Technology,2/4/2019,Gravity Spy,,https://ciera.northwestern.edu/visits/oli-patane/,1548892800,1548979200,2018,,2019,1/31/2019,2/1/2019,2,0,Group Meeting,0,6 +3374,Jennifer Bergner,Harvard University,1/28/2019,Luke Kelley,Theory Group,https://ciera.northwestern.edu/visits/jennifer-bergner/,1548979200,1548979200,2018,theory-group-meetings,2019,2/1/2019,2/1/2019,1,0,Group Meeting,0,1 +3346,Sukrit Ranjan,Massachusetts Institute of Technology,1/24/2019,CIERA,Visiting Fellow,https://ciera.northwestern.edu/visits/sukrit-ranjan-4/,1548633600,1548806400,2018,,2019,1/28/2019,1/30/2019,3,0,Astro Faculty,0,3 +3322,Ben Montet,University of Chicago,1/22/2019,Diego Munoz,Astro Seminar,https://ciera.northwestern.edu/visits/ben-montet/,1548633600,1548720000,2018,astrophysics-seminars,2019,1/28/2019,1/29/2019,2,0,Astro Faculty,0,3 +3284,Antonella Palmese,Fermi National Accelerator Laboratory,1/14/2019,Kerry Paterson,Observational Astro,https://ciera.northwestern.edu/visits/antonella-palmese/,1548633600,1548633600,2018,observational-astronomy-meetings,2019,1/28/2019,1/28/2019,1,0,Group Meeting,0,3 +1823,Andrew Hearin,Argonne National Laboratory,10/17/2018,Luke Kelley,Astro Seminar,https://ciera.northwestern.edu/visits/andrew-hearin/,1548028800,1548201600,2018,astrophysics-seminars,2019,1/21/2019,1/23/2019,3,0,Grad Student,0,1 +3270,Marco Berton,Finnish Centre for Astronomy with the European Organisation for Astronomical Research in the Southern Hemisphere,1/7/2019,Giacomo Terreran,Terreran Visitor,https://ciera.northwestern.edu/visits/marco-berton/,1548115200,1548201600,2018,special-astronomy-seminars,2019,1/22/2019,1/23/2019,2,1,Group Meeting,0,1 +3281,Prakriti Choudhury,Indian Institute of Science,1/11/2019,Claude-Andr� Faucher-Gigu�re,CAFG Visitor,https://ciera.northwestern.edu/visits/prakriti-choudhury/,1547769600,1547769600,2018,theory-group-meetings,2019,1/18/2019,1/18/2019,1,1,Postdoc,0,1 +1598,Katrin Heitmann,Argonne National Laboratory,9/17/2018,Claude-Andr� Faucher-Gigu�re,Interdisciplinary Colloquium,https://ciera.northwestern.edu/visits/katrin-heitmann/,1547424000,1547596800,2018,interdisciplinary-colloquia,2019,1/14/2019,1/16/2019,3,0,Group Meeting,0,1 +3264,Tanmoy Lasker,University of Bath,1/2/2019,Raffaella Margutti,Observational Astro,https://ciera.northwestern.edu/visits/tanmoy-lasker/,1547164800,1547424000,2018,observational-astronomy-meetings,2019,1/11/2019,1/14/2019,4,1,Group Meeting,0,1 +1770,Sukrit Ranjan,Massachusetts Institute of Technology,10/12/2018,CIERA,,https://ciera.northwestern.edu/visits/sukrit-ranjan-3/,1546214400,1546560000,2018,,2019,12/31/2018,1/4/2019,5,0,Group Meeting,0,1 +1421,Ying Qin,University of Geneva,9/7/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ying-qin-2/,1535760000,1546214400,2018,,2019,9/1/2018,12/31/2018,122,1,Astro Faculty,0,1 +2404,Carl-Johan Haster,Massachusettes Institute of Technology,11/12/2018,Christopher Berry,Special Seminar,https://ciera.northwestern.edu/visits/carl-johan-haster/,1544400000,1544745600,2018,special-astronomy-seminars,2019,12/10/2018,12/14/2018,5,1,Group Meeting,0,1 +2616,Kai Staats,Laser Interferometer Gravitational-Wave Observatory,11/19/2018,Christopher Berry,LIGO visitor,https://ciera.northwestern.edu/visits/kai-staats-3/,1544313600,1544572800,2018,,2019,12/9/2018,12/12/2018,4,0,Postdoc,0,1 +2831,Carl Rodriguez,Massachusetts Institute of Technology,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamics Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/carl-rodriguez-2/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,0,Astro Faculty,0,7 +2832,Katie Breivik,Canadian Institute for Theoretical Astrophysics,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamics Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/katie-breivik-2/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,1,Postdoc,0,7 +2833,Adrian Hamers,Princeton University,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamics Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/adrian-hamers-3/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,0,Postdoc,0,7 +2834,Johan Samsing,Princeton University,11/29/2018,Fred Rasio / Kyle Kremer,"Dynamic Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/johan-samsing/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,0,Astro Faculty,0,7 +2836,Dan D'Orazio,Harvard University,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamic Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/dan-dorazio/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,0,Astro Faculty,0,7 +2838,Sambaran Banerjee,University of Bonn,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamic Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/sambaran-banerjee-2/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,1,Astro Faculty,0,7 +2840,Alessandro Trani,University of Tokyo,11/29/2018,"Fred Rasio, Kyle Kremer","Dynamic Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/alessandro-trani/,1543968000,1544227200,2018,,2019,12/5/2018,12/8/2018,4,1,Group Meeting,0,7 +2842,Bob Mathieu,"University of Wisconsin, Madison",11/29/2018,"Fred Rasio, Kyle Kremer","Dynamic Workshop December 5-8, 2018",https://ciera.northwestern.edu/visits/bob-mathieu/,1544140800,1544227200,2018,,2019,12/7/2018,12/8/2018,2,0,Astro Faculty,0,15 +2412,Matthew Liska,University of Amsterdam,11/12/2018,Sasha Tchekhovskoy,Sasha Visitor,https://ciera.northwestern.edu/visits/matthew-liska-2/,1542672000,1544140800,2018,,2019,11/20/2018,12/7/2018,18,1,Postdoc,0,1 +1691,Gr�goire Marcel,IPAG,9/25/2018,Sasha Tchekhovskoy,Sasha Visitor,https://ciera.northwestern.edu/visits/gregoire-marcel/,1543795200,1544140800,2018,,2019,12/3/2018,12/7/2018,5,1,Postdoc,0,2 +2790,Tom Rice,University of Michigan,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/tom-rice/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Group Meeting,0,15 +2793,??Gijs Mulders,University of Chicago,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/%e2%80%8b%e2%80%8bgijs-mulders/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Astro Faculty,0,15 +2796,Michael Meyer,University of Michigan,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/michael-meyer/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Group Meeting,0,15 +2797,Andrew Neil,University of Chicago,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/andrew-neil/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Group Meeting,0,15 +2798,Justin Crepp,University of Notre Dame,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/justin-crepp-2/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Astro Faculty,0,15 +2801,Erin May,University of Michigan,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/erin-may/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Postdoc,0,15 +2802,Lisa Prato,Lowell Observatory,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/lisa-prato/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Postdoc,0,15 +2803,Hayley Beltz,University of Michigan,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/hayley-beltz/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Astro Faculty,0,15 +2804,Edwin Kite,University of Chicago,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/edwin-kite/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Group Meeting,0,15 +2806,Nadia Marounina,University of Chicago,11/28/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/nadia-marounina/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Other Faculty,0,15 +2808,Jade Checlair,University of Chicago,11/28/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/jade-checlair/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Postdoc,0,15 +2812,Coco Zhang,University of Michigan,11/29/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/coco-zhang/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Postdoc,0,15 +2814,Adam Sutherland,University of Arizona,11/29/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/adam-sutherland/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Astro Faculty,0,15 +2815,Thaddeus Komacek,University of Chicago,11/29/2018,Yoram Lithwick,Chicago-area and Lake Michigan Exoplanet� & Planetary Formation Meeting,https://ciera.northwestern.edu/visits/thaddeus-komacek/,1544140800,1544140800,2018,,2019,12/7/2018,12/7/2018,1,0,Group Meeting,0,15 +1021,Rodrigo Fern�ndez,University of Arizona,8/23/2018,Sasha Tchekhovskoy,Astrophysics Seminar,https://ciera.northwestern.edu/visits/rodrigo-fernandez/,1543795200,1543968000,2018,astrophysics-seminars,2019,12/3/2018,12/5/2018,3,0,Postdoc,0,2 +1667,Lucy McNeill,Monash University,9/20/2018,Michael Zevin,Theory Group,https://ciera.northwestern.edu/visits/lucy-mcneill/,1543536000,1543881600,2018,theory-group-meetings,2019,11/30/2018,12/4/2018,5,1,Postdoc,0,1 +1817,Adithan Kathirgamaraju,Purdue University,10/15/2018,Ian Christie,,https://ciera.northwestern.edu/visits/adithan-kathirgamaraju-3/,1543104000,1543536000,2018,,2019,11/25/2018,11/30/2018,6,0,Astro Faculty,0,1 +1019,Gurtina Besla,University of Arizona,8/23/2018,Cliff Johnson,Astrophysics Seminar,https://ciera.northwestern.edu/visits/gurtina-besla/,1543190400,1543363200,2018,astrophysics-seminars,2019,11/26/2018,11/28/2018,3,0,Group Meeting,0,1 +1664,Patrick Sheehan,NRAO,9/20/2018,CIERA,Theory Group,https://ciera.northwestern.edu/visits/patrick-sheehan-3/,1542240000,1542412800,2018,theory-group-meetings,2019,11/15/2018,11/17/2018,3,0,Other Faculty,0,1 +1665,Nick Frontiere,Argonne National Laboratory,9/20/2018,Claude-Andr� Faucher-Gigu�re,Theory Group,https://ciera.northwestern.edu/visits/nick-frontiere/,1542326400,1542412800,2018,theory-group-meetings,2019,11/16/2018,11/17/2018,2,0,Postdoc,0,2 +2406,Brett Bolen,Grand Valley State University,11/12/2018,Shane Larson,'+ 2 grad students (unnamed),https://ciera.northwestern.edu/visits/brett-bolen/,1542326400,1542326400,2018,,2019,11/16/2018,11/16/2018,1,0,Postdoc,0,2 +2251,Laura Fissel,National Radio Astronomy Observatory,11/6/2018,Giles Novak,,https://ciera.northwestern.edu/visits/laura-fissel/,1541635200,1541808000,2018,,2019,11/8/2018,11/10/2018,3,0,Postdoc,0,1 +1663,Tingting Liu,"University of Wisconsin, Milwaukee",9/20/2018,Luke Kelley,Theory Group,https://ciera.northwestern.edu/visits/tingting-liu/,1541721600,1541808000,2018,theory-group-meetings,2019,11/9/2018,11/10/2018,2,0,Postdoc,0,1 +1902,Jack Lissauer,NASA,10/23/2018,Pierre Gratia,,https://ciera.northwestern.edu/visits/jack-lissauer/,1541030400,1541548800,2018,astrophysics-seminars,2019,11/1/2018,11/7/2018,7,0,Other Faculty,0,2 +1426,Grant Williams,University of Arizona,9/7/2018,Wen-fai Fong,Special Seminar (covered by CIERA),https://ciera.northwestern.edu/visits/grant-williams/,1541289600,1541462400,2018,special-astronomy-seminars,2019,11/4/2018,11/6/2018,3,0,Postdoc,0,1 +2105,Griffin Hosseinzadah,Harvard University,11/2/2018,Wen-fai Fong,Observational Astro Speaker,https://ciera.northwestern.edu/visits/griffin-hosseinzadah/,1541376000,1541376000,2018,observational-astronomy-meetings,2019,11/5/2018,11/5/2018,1,0,Postdoc,0,1 +1000,Beth Willman,"National Center for Optical-Infrared Astronomy, Association of Universities for Research in Astronomy",8/22/2018,Vicky Kalogera,Interdisciplinary Colloquium,https://ciera.northwestern.edu/visits/beth-willman/,1541030400,1541203200,2018,interdisciplinary-colloquia,2019,11/1/2018,11/3/2018,3,0,Postdoc,0,2 +1909,Ori Fox,Space Telescope Science Institute,10/24/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/ori-fox/,1541116800,1541116800,2018,,2019,11/2/2018,11/2/2018,1,0,Astro Faculty,0,1 +1017,Sarah Ballard,Massechusetts Institute of Technology,8/23/2018,Diego Munoz,Astrophysics Seminar,https://ciera.northwestern.edu/visits/sarah-ballard/,1540771200,1540944000,2018,astrophysics-seminars,2019,10/29/2018,10/31/2018,3,0,Group Meeting,0,2 +1015,Bertram Bitsch,Lund University,8/23/2018,Seth Jacobson (EPS),CIERA Special Seminar,https://ciera.northwestern.edu/visits/bertram-bitsch/,1540771200,1540771200,2018,special-astronomy-seminars,2019,10/29/2018,10/29/2018,1,1,Postdoc,0,2 +1661,Kung-Yi Su,California Institute of Technology,9/20/2018,Claude-Andr� Faucher-Gigu�re,Theory Group,https://ciera.northwestern.edu/visits/kung-yi-su/,1540512000,1540598400,2018,theory-group-meetings,2019,10/26/2018,10/27/2018,2,0,Group Meeting,0,1 +1486,Brian O�Shea,Michigan State University,9/10/2018,Sarah Wellons,,https://ciera.northwestern.edu/visits/brian-oshea/,1540166400,1540339200,2018,astrophysics-seminars,2019,10/22/2018,10/24/2018,3,0,Astro Faculty,0,2 +1611,Katie Breivik,Canadian Institute for Theoretical Astrophysics,9/18/2018,"Shane Larson, Kyle Kremer",,https://ciera.northwestern.edu/visits/katie-breivik/,1540166400,1540339200,2018,,2019,10/22/2018,10/24/2018,3,1,Postdoc,0,2 +1659,Andrew Chael,Harvard University,9/20/2018,Sasha Tchekhovskoy,Theory Group,https://ciera.northwestern.edu/visits/andrew-chael/,1539734400,1539907200,2018,theory-group-meetings,2019,10/17/2018,10/19/2018,3,0,Postdoc,0,1 +1769,Sukrit Ranjan,Massachusetts Institute of Technology,10/12/2018,CIERA,,https://ciera.northwestern.edu/visits/sukrit-ranjan-2/,1539820800,1539907200,2018,,2019,10/18/2018,10/19/2018,2,0,Astro Faculty,0,1 +1013,Mansi M. Kasliwal,California Institute of Technology,8/22/2018,Raffaella Margutti,Astrophysics Seminar,https://ciera.northwestern.edu/visits/mansi-m-kasliwal/,1539561600,1539734400,2018,astrophysics-seminars,2019,10/15/2018,10/17/2018,3,0,Astro Faculty,0,1 +1655,Sean Ressler,"University of California, Berkeley",9/20/2018,Sasha Tchekhovskoy,Theory Group,https://ciera.northwestern.edu/visits/sean-ressler/,1538956800,1539302400,2018,theory-group-meetings,2019,10/8/2018,10/12/2018,5,0,Group Meeting,0,2 +1011,Ekta Patel,University of Arizona,8/22/2018,Sarah Wellons,Theory Group Seminar,https://ciera.northwestern.edu/visits/ekta-patel/,1539216000,1539302400,2018,theory-group-meetings,2019,10/11/2018,10/12/2018,2,0,Astro Faculty,0,1 +1010,Lorenzo Sironi,Columbia University,8/22/2018,Sasha Tchekhovskoy,Astrophysics Seminar,https://ciera.northwestern.edu/visits/lorenzo-sironi/,1538956800,1539129600,2018,astrophysics-seminars,2019,10/8/2018,10/10/2018,3,0,Astro Faculty,0,2 +1652,Peter Blanchard,Harvard University,9/20/2018,Raffaella Margutti,Theory Group Meeting,https://ciera.northwestern.edu/visits/peter-blanchard/,1538697600,1538784000,2018,theory-group-meetings,2019,10/5/2018,10/6/2018,2,0,Group Meeting,0,2 +1654,Donghong Wu,"University of Nevada, Las Vegas",9/20/2018,Shane Larson,Theory Group,https://ciera.northwestern.edu/visits/donghong-wu/,1538697600,1538784000,2018,theory-group-meetings,2019,10/5/2018,10/6/2018,2,0,Group Meeting,0,2 +1008,Rachel Bezanson,University of Pittsburgh,8/22/2018,Sarah Wellons,Astrophysics Seminar,https://ciera.northwestern.edu/visits/rachel-bezanson/,1538352000,1538524800,2018,astrophysics-seminars,2019,10/1/2018,10/3/2018,3,0,Group Meeting,0,1 +378,Phil Nicholson,Cornell University,8/10/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/phil-nicholson/,1537920000,1538092800,2018,interdisciplinary-colloquia|theory-group-meetings,2019,9/26/2018,9/28/2018,3,0,Group Meeting,0,1 +934,Sukrit Ranjan,Massachusetts Institute of Technology,8/22/2018,CIERA,,https://ciera.northwestern.edu/visits/sukrit-ranjan/,1536105600,1536278400,2018,,2019,9/5/2018,9/7/2018,3,0,Group Meeting,0,1 +563,Ying Qin,University of Geneva,8/16/2018,"Vicky Kalogera, Tassos Fragos",,https://ciera.northwestern.edu/visits/ying-qin/,1504224000,1519776000,2017,,2018,9/1/2017,2/28/2018,181,1,Group Meeting,1,1 +492,Danny Milisavljevic,Purdue University,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/danny-milisavljevic/,1505952000,1506211200,2017,,2018,9/21/2017,9/24/2017,4,0,Group Meeting,0,3 +592,Laura Keating,CITA; University of Toronto,8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/laura-keating/,1529971200,1530230400,2017,special-astronomy-seminars,2018,6/26/2018,6/29/2018,4,1,Grad Student,1,1 +939,Kevin Crowston,Syracuse University,8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/kevin-crowston/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Astro Faculty,1,7 +957,Mabi Harandi,Syracuse University,8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/mabi-harandi/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Postdoc,1,7 +960,Corey Jackson,Syracuse University,8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/corey-jackson/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Astro Faculty,0,7 +962,Carsten Oesterlund,Syracuse University,8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/carsten-oesterlund/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Postdoc,0,7 +587,Ramesh Narayan,Harvard University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/ramesh-narayan/,1527465600,1527638400,2017,astrophysics-seminars,2018,5/28/2018,5/30/2018,3,0,Group Meeting,0,1 +586,Brad Cenko,NASA Goddard Space Flight Center,8/16/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/brad-cenko/,1527206400,1527206400,2017,theory-group-meetings,2018,5/25/2018,5/25/2018,1,0,Group Meeting,0,1 +584,Charlie Conroy,Harvard University,8/16/2018,Cliff Johnson,,https://ciera.northwestern.edu/visits/charlie-conroy/,1526860800,1527033600,2017,astrophysics-seminars,2018,5/21/2018,5/23/2018,3,0,Group Meeting,0,2 +963,Joshua Smith,"California State University, Fullerton",8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/joshua-smith-2/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Astro Faculty,0,7 +583,Jason Tumlinson,Johns Hopkins University,8/16/2018,Jonathan Stern,,https://ciera.northwestern.edu/visits/jason-tumlinson/,1526256000,1526428800,2017,astrophysics-seminars,2018,5/14/2018,5/16/2018,3,0,Group Meeting,0,1 +582,Tarraneh Eftekhari,Harvard University,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/tarraneh-eftekhari/,1525910400,1525996800,2017,special-astronomy-seminars,2018,5/10/2018,5/11/2018,2,0,Group Meeting,0,1 +581,Justin Crepp,University of Notre Dame,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/justin-crepp/,1525651200,1525824000,2017,astrophysics-seminars,2018,5/7/2018,5/9/2018,3,0,Group Meeting,0,1 +964,Laura Trouille,Adler Planetarium/Zooniverse,8/22/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/laura-trouille/,1508976000,1509062400,2017,,2018,10/26/2017,10/27/2017,2,0,Astro Faculty,0,7 +965,Al Harper,University of Chicago,8/22/2018,Novak Group Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/al-harper/,1510185600,1510272000,2017,,2018,11/9/2017,11/10/2017,2,0,Postdoc,0,3 +579,Rachel Somerville,Rutgers University,8/16/2018,Sarah Wellons,,https://ciera.northwestern.edu/visits/rachel-somerville/,1525046400,1525219200,2017,astrophysics-seminars,2018,4/30/2018,5/2/2018,3,0,Group Meeting,0,2 +966,Carrie Volpert,University of Chicago,8/22/2018,Novak Group Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/carrie-volpert-4/,1510185600,1510272000,2017,,2018,11/9/2017,11/10/2017,2,0,Postdoc,0,3 +576,Suvi Gezari,University of Maryland,8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/suvi-gezari/,1524441600,1524614400,2017,astrophysics-seminars,2018,4/23/2018,4/25/2018,3,0,Astro Faculty,0,11 +526,Sumit Sarbadhicary,University of Pittsburgh,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/sumit-sarbadhicary/,1510790400,1510876800,2017,,2018,11/16/2017,11/17/2017,2,0,Astro Faculty,0,3 +528,Adithan Kathirgamaraju,Purdue University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/adithan-kathirgamaraju/,1510790400,1510876800,2017,,2018,11/16/2017,11/17/2017,2,0,Other Faculty,1,3 +531,Carl Rodriguez,Massachusetts Institute of Technology,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/carl-rodriguez/,1511827200,1512432000,2017,,2018,11/28/2017,12/5/2017,8,0,Astro Faculty,0,1 +536,Karin Sandstrom,"University of California, San Diego",8/16/2018,Cliff Johnson,,https://ciera.northwestern.edu/visits/karin-sandstrom/,1512345600,1512691200,2017,,2018,12/4/2017,12/8/2017,5,0,Astro Faculty,0,1 +537,Carrie Volpert,University of Chicago,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/carrie-volpert/,1512691200,1512691200,2017,,2018,12/8/2017,12/8/2017,1,0,Astro Faculty,0,1 +540,Patrick Sheehan,University of Oklahoma,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/patrick-sheehan/,1515974400,1516320000,2017,,2018,1/15/2018,1/19/2018,5,0,Astro Faculty,0,2 +546,Carrie Volpert,University of Chicago,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/carrie-volpert-2/,1516665600,1517356800,2017,,2018,1/23/2018,1/31/2018,9,0,Astro Faculty,0,1 +545,Fakhri Zahedy,University of Chicago,8/16/2018,Jonathan Stern,,https://ciera.northwestern.edu/visits/fakhri-zahedy/,1517270400,1517270400,2017,,2018,1/30/2018,1/30/2018,1,0,Astro Faculty,0,1 +575,Vikram Dwarkadas,University of Chicago,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/vikram-dwarkadas/,1523836800,1524009600,2017,astrophysics-seminars,2018,4/16/2018,4/18/2018,3,0,Other Faculty,0,1 +574,Shami Chatterjee,Cornell University,8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/shami-chatterjee/,1522627200,1522800000,2017,astrophysics-seminars,2018,4/2/2018,4/4/2018,3,0,Astro Faculty,0,1 +551,Luke Zoltan Kelley,Harvard University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/luke-zoltan-kelley/,1517961600,1518134400,2017,,2018,2/7/2018,2/9/2018,3,0,Postdoc,0,1 +967,David Chuss,Villanova University,8/22/2018,HAWC+ Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/david-chuss-2/,1518393600,1518739200,2017,,2018,2/12/2018,2/16/2018,5,0,Group Meeting,0,6 +968,Jordan Guerra Aguilera,Villanova University,8/22/2018,HAWC+ Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/jordan-guerra-aguilera/,1518393600,1518739200,2017,,2018,2/12/2018,2/16/2018,5,0,Postdoc,0,6 +969,Enrique Lopez-Rodriguez,NASA Ames Research Center,8/22/2018,HAWC+ Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/enrique-lopez-rodriquez/,1518393600,1518739200,2017,,2018,2/12/2018,2/16/2018,5,0,Postdoc,0,6 +561,Carrie Volpert,University of Chicago,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/carrie-volpert-3/,1518998400,1518998400,2017,,2018,2/19/2018,2/19/2018,1,0,Postdoc,0,2 +569,Ian Christie,Purdue University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/ian-christie-2/,1521331200,1521763200,2017,,2018,3/18/2018,3/23/2018,6,0,Postdoc,0,1 +570,Belinda Wilkes,Harvard-Smithsonian Center for Astrophysics,8/16/2018,"Fred Rasio, Wen-fai Fong, Raffaella Margutti",,https://ciera.northwestern.edu/visits/belinda-wilkes/,1521590400,1521763200,2017,,2018,3/21/2018,3/23/2018,3,0,Group Meeting,0,1 +571,Patrick Sheehan,University of Oklahoma,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/patrick-sheehan-2/,1522022400,1522281600,2017,,2018,3/26/2018,3/29/2018,4,0,Astro Faculty,0,1 +970,Erin Boettcher,"University of Wisconsin, Madison",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/erin-boettcher/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Astro Faculty,0,8 +971,Vikram Dwarkadas,University of Chicago,8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/vikram-dwarkadas-2/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Astro Faculty,0,8 +972,Kendall Hall,"University of Wisconsin, Madison",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/kendall-hall/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Astro Faculty,0,8 +568,Alexander (Sasha) Philippov,"University of California, Berkeley",8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/alexander-sasha-philippov/,1520812800,1520985600,2017,astrophysics-seminars,2018,3/12/2018,3/14/2018,3,0,Postdoc,0,1 +5471,Amy Reines,Montana State University,3/24/2018,,,https://ciera.northwestern.edu/visits/amy-reines/,1520553600,1520553600,2017,theory-group-meetings,2018,3/9/2018,3/9/2018,1,0,Astro Faculty,0,1 +566,Maria Drout,Carnegie Institution for Science,8/16/2018,Giacomo Terreran,,https://ciera.northwestern.edu/visits/maria-drout/,1520208000,1520380800,2017,astrophysics-seminars,2018,3/5/2018,3/7/2018,3,1,Astro Faculty,0,1 +565,Michael Grudic,California Institute of Technology,8/16/2018,Cliff Johnson,,https://ciera.northwestern.edu/visits/michael-grudic/,1519776000,1519948800,2017,theory-group-meetings,2018,2/28/2018,3/2/2018,3,0,Astro Faculty,0,1 +973,Logan Jones,"University of Wisconsin, Madison",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/logan-jones/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Astro Faculty,0,8 +564,Duncan Lorimer,West Virginia University,8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/duncan-lorimer/,1519603200,1519776000,2017,astrophysics-seminars,2018,2/26/2018,2/28/2018,3,0,Astro Faculty,0,1 +562,Christina Williams,University of Arizona,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/christina-williams/,1518998400,1519171200,2017,astrophysics-seminars,2018,2/19/2018,2/21/2018,3,0,Postdoc,0,2 +974,Joshua Oppor,"University of Wisconsin, Madison",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/joshua-oppor/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Postdoc,0,8 +560,Pranab Ghosh,Tata Institute of Fundamental Research,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/pranab-ghosh/,1518393600,1518739200,2017,theory-group-meetings,2018,2/12/2018,2/16/2018,5,1,Postdoc,0,6 +975,Grace Wolf-Chase,Adler Planetarium,8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/grace-wolf-chase/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Postdoc,0,8 +976,Aaron Lopez,"University of Wisconsin, Madison",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/aaron-lopez/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,0,Astro Faculty,0,8 +977,Matteo Mazzarini,"Astronomisches Rechen-Institut, Heidelberg University",8/22/2018,ALMA Community Day Event (Deanne Coppejans),,https://ciera.northwestern.edu/visits/matteo-mazzarini/,1522281600,1522281600,2017,,2018,3/29/2018,3/29/2018,1,1,Postdoc,0,8 +5470,Andrea Antoni,University of California - Santa Cruz,2/24/2018,,,https://ciera.northwestern.edu/visits/andrea-antoni/,1518739200,1518739200,2017,theory-group-meetings,2018,2/16/2018,2/16/2018,1,0,Astro Faculty,0,1 +550,Jose O�orbe,California Institute of Technology,8/16/2018,Jonathan Stern,,https://ciera.northwestern.edu/visits/jose-onorbe/,1517788800,1518652800,2017,theory-group-meetings,2018,2/5/2018,2/15/2018,11,0,Astro Faculty,0,2 +557,Rebekah (Bekki) Dawson,Pennsylvania State University,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/rebekah-bekki-dawson/,1518393600,1518566400,2017,astrophysics-seminars,2018,2/12/2018,2/14/2018,3,0,Astro Faculty,0,6 +555,David Chuss,Villanova University,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/david-chuss/,1518393600,1518480000,2017,special-astronomy-seminars,2018,2/12/2018,2/13/2018,2,0,Postdoc,0,6 +578,Koushik Chatterjee,Indian Institute of Technology,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/koushik-chatterjee/,1524441600,1525392000,2017,,2018,4/23/2018,5/4/2018,12,1,Astro Faculty,0,11 +554,Kate Alexander,Harvard University,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/kate-alexander/,1518048000,1518134400,2017,theory-group-meetings,2018,2/8/2018,2/9/2018,2,0,Astro Faculty,0,1 +548,Heino Falcke,Radboud University,8/16/2018,Rocco Coppejans,,https://ciera.northwestern.edu/visits/heino-falcke/,1517788800,1517961600,2017,astrophysics-seminars,2018,2/5/2018,2/7/2018,3,1,Astro Faculty,0,2 +577,Adithan Kathirgamaraju,Purdue University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/adithan-kathirgamaraju-2/,1524441600,1524787200,2017,,2018,4/23/2018,4/27/2018,5,0,Astro Faculty,0,11 +547,Maxwell Moe,University of Arizona,8/16/2018,Diego Munoz,,https://ciera.northwestern.edu/visits/maxwell-moe/,1517184000,1517356800,2017,astrophysics-seminars,2018,1/29/2018,1/31/2018,3,0,Astro Faculty,0,1 +978,James Bullock,"University of California, Irvine",8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/james-bullock/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,0,Astro Faculty,0,11 +544,Konstantin Batygin,California Institute of Technology,8/16/2018,"Fred Rasio, Seth Jacobson",,https://ciera.northwestern.edu/visits/konstantin-batygin/,1516838400,1517011200,2017,theory-group-meetings,2018,1/25/2018,1/27/2018,3,0,Astro Faculty,0,1 +538,Drummond Fielding,"University of California, Berkeley",8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/drummond-fielding/,1513555200,1516579200,2017,special-astronomy-seminars,2018,12/18/2017,1/22/2018,36,0,Astro Faculty,0,1 +979,Robert Feldmann,University of Zurich,8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/robert-feldmann/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,1,Astro Faculty,0,11 +541,Damiano Caprioli,University of Chicago,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/damiano-caprioli/,1516320000,1516320000,2017,theory-group-meetings,2018,1/19/2018,1/19/2018,1,0,Astro Faculty,0,1 +539,Todd Thompson,Ohio State University,8/16/2018,Jonathan Stern,,https://ciera.northwestern.edu/visits/todd-thompson/,1515974400,1516147200,2017,astrophysics-seminars,2018,1/15/2018,1/17/2018,3,0,Astro Faculty,0,2 +980,Chris Hayward,Flatiron Institute,8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/chris-hayward/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,0,Astro Faculty,0,11 +981,Phil Hopkins,California Institute of Technology,8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/phil-hopkins/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,0,Astro Faculty,0,11 +983,Norman Murray,Canadian Institute for Theoretical Astrophysics,8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/norman-murray-2/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,1,Group Meeting,0,11 +534,Dan Tamayo,University of Toronto,8/16/2018,"Fred Rasio, Seth Stein, Sourav Chatterjee",,https://ciera.northwestern.edu/visits/dan-tamayo/,1512000000,1512172800,2017,interdisciplinary-colloquia,2018,11/30/2017,12/2/2017,3,1,Postdoc,0,2 +533,Ben Ryan,University of Illinois,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/ben-ryan/,1512000000,1512086400,2017,special-astronomy-seminars,2018,11/30/2017,12/1/2017,2,0,Astro Faculty,0,2 +530,Benjamin Oppenheimer,University of Colorado - Boulder,8/16/2018,Alex Richings,,https://ciera.northwestern.edu/visits/benjamin-oppenheimer/,1511136000,1511308800,2017,special-astronomy-seminars,2018,11/20/2017,11/22/2017,3,0,Astro Faculty,0,1 +529,Dan Stevens,Ohio State University,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/dan-stevens/,1510790400,1510963200,2017,theory-group-meetings,2018,11/16/2017,11/18/2017,3,0,Astro Faculty,0,3 +984,Eliot Quataert,"University of California, Berkeley",8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/eliot-quataert/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,0,Group Meeting,0,11 +986,Andrew Wetzel,"University of California, Davis",8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/andrew-wetzel/,1524441600,1524528000,2017,,2018,4/23/2018,4/24/2018,2,0,Group Meeting,0,11 +645,Wen-fai Fong,University of Arizona,8/16/2018,"Michael Schmitt, Vicky Kalogera",,https://ciera.northwestern.edu/visits/wen-fai-fong-2/,1489017600,1510444800,2016,,2017,3/9/2017,11/12/2017,249,0,Postdoc,1,1 +523,Adrian Hamers,Institute for Advanced Study / Princeton,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/adrian-hamers/,1509926400,1510272000,2017,special-astronomy-seminars,2018,11/6/2017,11/10/2017,5,1,Postdoc,0,2 +982,Dusan Keres,"University of California, San Diego",8/22/2018,FIRE PI Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/dusan-keres/,1524441600,1524441600,2017,,2018,4/23/2018,4/23/2018,1,0,Group Meeting,0,11 +580,Omer Bromberg,Rutgers University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/omer-bromberg/,1525046400,1525392000,2017,,2018,4/30/2018,5/4/2018,5,0,Group Meeting,0,2 +524,Vanessa Graber,McGill University,8/16/2018,"Vicky Kalogera, Jim Sauls (CMP)",,https://ciera.northwestern.edu/visits/vanessa-graber/,1510185600,1510185600,2017,astrophysics-seminars,2018,11/9/2017,11/9/2017,1,1,Postdoc,0,3 +522,Gregg Hallinan,California Institute of Technology,8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/gregg-hallinan/,1509926400,1510099200,2017,astrophysics-seminars,2018,11/6/2017,11/8/2017,3,0,Astro Faculty,0,2 +521,Pierre Christian,Harvard University,8/16/2018,Sarah Wellons,,https://ciera.northwestern.edu/visits/pierre-christian/,1509667200,1509753600,2017,theory-group-meetings,2018,11/3/2017,11/4/2017,2,0,Group Meeting,0,1 +520,Gregory Laughlin,Yale University,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/gregory-laughlin/,1509494400,1509667200,2017,interdisciplinary-colloquia,2018,11/1/2017,11/3/2017,3,0,Group Meeting,0,1 +519,Frank van den Bosch,Yale University,8/16/2018,Sarah Wellons,,https://ciera.northwestern.edu/visits/frank-van-den-bosch/,1509321600,1509494400,2017,astrophysics-seminars,2018,10/30/2017,11/1/2017,3,0,Group Meeting,0,1 +518,Aleksey Generozov,Columbia University,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/aleksey-generozov/,1508976000,1509148800,2017,theory-group-meetings,2018,10/26/2017,10/28/2017,3,0,Astro Faculty,0,7 +585,Kai Staats,Laser Interferometer Gravitational-Wave Observatory,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/kai-staats/,1526860800,1527033600,2017,,2018,5/21/2018,5/23/2018,3,0,Group Meeting,0,2 +589,Brice M�nard,Johns Hopkins University,8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/brice-menard/,1527984000,1528156800,2017,,2018,6/3/2018,6/5/2018,3,0,Group Meeting,0,1 +590,Matthew Heising,Harvard University,8/16/2018,Diego Munoz,,https://ciera.northwestern.edu/visits/matthew-heising/,1529280000,1529539200,2017,,2018,6/18/2018,6/21/2018,4,0,Postdoc,0,1 +591,Aravind Pazhayath Ravi,University of Texas at Arlington,8/16/2018,Kari Frank,,https://ciera.northwestern.edu/visits/aravind-pazhayath-ravi/,1529884800,1530144000,2017,,2018,6/25/2018,6/28/2018,4,0,Astro Faculty,0,1 +593,Leo Tsukada,University of Tokyo,8/16/2018,LIGO Group,,https://ciera.northwestern.edu/visits/leo-tsukada/,1530144000,1530144000,2017,,2018,6/28/2018,6/28/2018,1,1,Astro Faculty,0,1 +594,Astrid Lamberts,California Institute of Technology,8/16/2018,Chris Pankow,,https://ciera.northwestern.edu/visits/astrid-lamberts/,1531267200,1531267200,2017,,2018,7/11/2018,7/11/2018,1,0,Group Meeting,0,1 +517,Susan Clark,Institute for Advanced Study,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/susan-clark/,1508716800,1508889600,2017,astrophysics-seminars,2018,10/23/2017,10/25/2017,3,0,Astro Faculty,0,1 +514,Payaswini Saikia,"Radboud University, Netherlands",8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/payaswini-saikia/,1507507200,1508457600,2017,special-astronomy-seminars,2018,10/9/2017,10/20/2017,12,1,Postdoc,0,2 +515,Kristen Garofali,University of Washington,8/16/2018,Fani Dosopoulou,,https://ciera.northwestern.edu/visits/kristen-garofali/,1508371200,1508457600,2017,theory-group-meetings,2018,10/19/2017,10/20/2017,2,0,Astro Faculty,0,2 +516,Michael Tremmel,Yale University,8/16/2018,Sarah Wellons,,https://ciera.northwestern.edu/visits/michael-tremmel/,1508371200,1508457600,2017,theory-group-meetings,2018,10/19/2017,10/20/2017,2,0,Astro Faculty,0,2 +508,Matthew Liska,University of Amsterdam,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/matthew-liska/,1506902400,1507852800,2017,theory-group-meetings,2018,10/2/2017,10/13/2017,12,1,Astro Faculty,0,1 +512,Hanno Rein,University of Toronto,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/hanno-rein/,1507507200,1507680000,2017,astrophysics-seminars,2018,10/9/2017,10/11/2017,3,1,Postdoc,0,2 +511,Paz Beniamini,George Washington University,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/paz-beniamini/,1507161600,1507334400,2017,theory-group-meetings,2018,10/5/2017,10/7/2017,3,0,Postdoc,0,1 +509,Ian Christie,Purdue University,8/16/2018,Sasha Tchekhovskoy,,https://ciera.northwestern.edu/visits/ian-christie/,1506988800,1507248000,2017,special-astronomy-seminars,2018,10/3/2017,10/6/2017,4,0,Astro Faculty,0,1 +510,Wendy Freedman,University Of Chicago,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/wendy-freedman/,1507075200,1507248000,2017,ciera-annual-public-lectures,2018,10/4/2017,10/6/2017,3,0,Astro Faculty,0,1 +501,Chelsea Harris,"University of California, Berkeley",8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/chelsea-harris/,1505952000,1506729600,2017,theory-group-meetings,2018,9/21/2017,9/30/2017,10,0,Astro Faculty,0,3 +506,Phil Cowperthwaite,Harvard University,8/16/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/phil-cowperthwaite/,1506556800,1506729600,2017,theory-group-meetings,2018,9/28/2017,9/30/2017,3,0,Postdoc,0,1 +503,Fabienne Bastien,Pennsylvania State University,8/16/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/fabienne-bastien/,1506297600,1506470400,2017,astrophysics-seminars,2018,9/25/2017,9/27/2017,3,0,Postdoc,0,1 +1513,Derek Davis,Syracuse University,9/12/2018,Scott Coughlin,,https://ciera.northwestern.edu/visits/derek-davis/,1534118400,1534377600,2017,,2018,8/13/2018,8/16/2018,4,0,Postdoc,0,1 +491,Suzanne Aigrain,University of Oxford,8/16/2018,Adam Miller,,https://ciera.northwestern.edu/visits/suzanne-aigrain/,1505952000,1506124800,2017,special-astronomy-seminars|theory-group-meetings,2018,9/21/2017,9/23/2017,3,1,Astro Faculty,0,3 +488,Adrian Barker,University of Leeds,8/16/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/adrian-barker/,1505692800,1506038400,2017,special-astronomy-seminars,2018,9/18/2017,9/22/2017,5,1,Astro Faculty,0,2 +489,Greg Taylor,University of New Mexico,8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/greg-taylor/,1505692800,1505865600,2017,astrophysics-seminars,2018,9/18/2017,9/20/2017,3,0,Postdoc,0,2 +448,Om Salafia, University of Milano-Bicocca,8/15/2018,Wen-fai Fong,,https://ciera.northwestern.edu/visits/om-salafia/,1505001600,1505174400,2017,special-astronomy-seminars,2018,9/10/2017,9/12/2017,3,1,Group Meeting,0,1 +675,Janet Chen,Max Planck Institute,8/16/2018,Giacomo Terreran,,https://ciera.northwestern.edu/visits/janet-chen/,1503619200,1503619200,2016,special-astronomy-seminars,2017,8/25/2017,8/25/2017,1,1,Group Meeting,1,1 +673,Enrique Lopez-Rodriguez,NASA Ames Research Center,8/16/2018,"Giles Novak, Marc Berthoud",,https://ciera.northwestern.edu/visits/enrique-lopez-rodriguez/,1501459200,1501804800,2016,,2017,7/31/2017,8/4/2017,5,0,Group Meeting,0,1 +674,Hagai Perets,Technion,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/hagai-perets/,1501718400,1501718400,2016,,2017,8/3/2017,8/3/2017,1,1,Group Meeting,0,1 +669,Pierre Gratia,University of Chicago,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/pierre-gratia/,1497225600,1499644800,2016,,2017,6/12/2017,7/10/2017,29,0,Astro Faculty,1,1 +672,Tatiana Ferraz Lagana,Universidade Cruzeiro do Sul (UNICSUL),8/16/2018,Mel Ulmer,,https://ciera.northwestern.edu/visits/tatiana-ferraz-lagana/,1498435200,1499385600,2016,,2017,6/26/2017,7/7/2017,12,1,Group Meeting,0,1 +670,Junfeng Wang,Xiamen University,8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/junfeng-wang/,1498089600,1498694400,2016,,2017,6/22/2017,6/29/2017,8,1,Group Meeting,0,1 +668,Anja Feldmeier-Krause,University of Chicago,8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/anja-feldmeier-krause/,1496707200,1496707200,2016,special-astronomy-seminars,2017,6/6/2017,6/6/2017,1,0,Astro Faculty,0,1 +667,Bob Benjamin,"University of Wisconsin, Whitewater",8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/bob-benjamin/,1496620800,1496620800,2016,,2017,6/5/2017,6/5/2017,1,0,Astro Faculty,0,1 +666,Edo Berger,Harvard University,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/edo-berger/,1496188800,1496361600,2016,,2017,5/31/2017,6/2/2017,3,0,Group Meeting,0,1 +1044,Julie Feldt,Adler Planetarium,8/23/2018,Adler Collaborators Meeting (David Meyer),,https://ciera.northwestern.edu/visits/julie-feldt/,1496361600,1496361600,2016,,2017,6/2/2017,6/2/2017,1,0,Group Meeting,0,3 +1045,Tommy Nelson,University of Pittsburgh,8/23/2018,Adler Collaborators Meeting (David Meyer),,https://ciera.northwestern.edu/visits/tommy-nelson/,1496361600,1496361600,2016,,2017,6/2/2017,6/2/2017,1,0,Astro Faculty,0,3 +1046,Laura Trouille,Adler Planetarium,8/23/2018,Adler Collaborators Meeting (David Meyer),,https://ciera.northwestern.edu/visits/laura-trouille-3/,1496361600,1496361600,2016,,2017,6/2/2017,6/2/2017,1,0,Astro Faculty,0,3 +662,Jeff Andrews,"Crete Astrophysics Group, Greece",8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/jeff-andrews-2/,1495324800,1495756800,2016,,2017,5/21/2017,5/26/2017,6,1,Astro Faculty,0,2 +663,Anastasios (Tassos) Fragkos,Observatoire Astronomique de l'Universit� de Gen�ve,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/anastasios-tassos-fragkos/,1495324800,1495756800,2016,,2017,5/21/2017,5/26/2017,6,1,Astro Faculty,0,2 +665,Nanda Rea,"Institute of Space Sciences (CSIC-IEEC), Barcelona API Astronomical Institute, University of Amsterdam",8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/nanda-rea/,1495411200,1495584000,2016,astrophysics-seminars,2017,5/22/2017,5/24/2017,3,1,Astro Faculty,0,4 +1040,C. Darren Dowell,NASA Jet Propulsion Laboratory,8/23/2018,HAWC+ Collaborators Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/c-darren-dowell/,1495411200,1495497600,2016,,2017,5/22/2017,5/23/2017,2,0,Astro Faculty,0,4 +1041,D. Al Harper,University of Chicago,8/23/2018,HAWC+ Collaborators Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/d-al-harper/,1495411200,1495497600,2016,,2017,5/22/2017,5/23/2017,2,0,Astro Faculty,0,4 +1043,Carrie Volpert,University of Chicago,8/23/2018,HAWC+ Collaborators Meeting (Giles Novak),,https://ciera.northwestern.edu/visits/carrie-volpert-5/,1495411200,1495497600,2016,,2017,5/22/2017,5/23/2017,2,0,Postdoc,0,4 +660,Dan Foreman-Mackey,University of Washington,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/dan-foreman-mackey/,1494806400,1494979200,2016,interdisciplinary-colloquia,2017,5/15/2017,5/17/2017,3,0,Group Meeting,0,3 +661,Ruth Angus,Columbia University / Simons Foundation,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/ruth-angus/,1494806400,1494979200,2016,,2017,5/15/2017,5/17/2017,3,0,Group Meeting,0,3 +658,Stephen Zepf,Michigan State University,8/16/2018,"Raffaella Margutti, Vicky Kalogera",,https://ciera.northwestern.edu/visits/stephen-zepf/,1494806400,1494892800,2016,special-astronomy-seminars,2017,5/15/2017,5/16/2017,2,0,Astro Faculty,0,3 +657,Desika Narayanan,Haverford College,8/16/2018,Alex Richings,,https://ciera.northwestern.edu/visits/desika-narayanan/,1494201600,1494374400,2016,astrophysics-seminars,2017,5/8/2017,5/10/2017,3,0,Postdoc,0,1 +656,Rainer Weiss,Massachusetts Institute of Technology / Laser Interferometer Gravitational Wave Observatory,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/rainer-weiss/,1493596800,1493769600,2016,ciera-annual-public-lectures,2017,5/1/2017,5/3/2017,3,1,Postdoc,0,1 +654,Cliff Johnson,"University of California, San Diego",8/16/2018,"Claude-Andr� Faucher-Gigu�re, Vicky Kalogera",,https://ciera.northwestern.edu/visits/cliff-johnson-2/,1491782400,1493337600,2016,,2017,4/10/2017,4/28/2017,19,0,Astro Faculty,0,3 +655,Nicholas Stone,Columbia Astrophysics Laboratory,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/nicholas-stone/,1492992000,1493164800,2016,astrophysics-seminars,2017,4/24/2017,4/26/2017,3,0,Grad Student,1,1 +653,Wei Zhu,Ohio State University,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/wei-zhu/,1492732800,1492732800,2016,special-astronomy-seminars|theory-group-meetings,2017,4/21/2017,4/21/2017,1,0,Astro Faculty,0,1 +651,Daniel Lecoanet,Princeton University,8/16/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/daniel-lecoanet/,1492300800,1492473600,2016,,2017,4/16/2017,4/18/2017,3,0,Astro Faculty,0,1 +649,Jo Bovy,University of Toronto,8/16/2018,Daniel Angles-Alcazar,,https://ciera.northwestern.edu/visits/jo-bovy/,1491782400,1491955200,2016,astrophysics-seminars,2017,4/10/2017,4/12/2017,3,1,Astro Faculty,0,3 +650,Kai Staats,Laser Interferometer Gravitational-Wave Observatory,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/kai-staats-2/,1491782400,1491955200,2016,,2017,4/10/2017,4/12/2017,3,0,Astro Faculty,0,3 +648,Norman Murray,CITA,8/16/2018,Alex Richings,,https://ciera.northwestern.edu/visits/norman-murray/,1491177600,1491350400,2016,astrophysics-seminars,2017,4/3/2017,4/5/2017,3,1,Postdoc,0,1 +647,Amy Bender,University of Chicago / Argonne National Laboratory,8/16/2018,Deanne Coppejans,,https://ciera.northwestern.edu/visits/amy-bender/,1490572800,1490745600,2016,astrophysics-seminars,2017,3/27/2017,3/29/2017,3,1,Astro Faculty,0,1 +646,Sasha Tchekhovskoy,"University of California, Berkeley",8/16/2018,"Michael Schmitt, Vicky Kalogera",,https://ciera.northwestern.edu/visits/sasha-tchekhovskoy-2/,1489190400,1489449600,2016,,2017,3/11/2017,3/14/2017,4,0,Postdoc,0,1 +644,Jeff Andrews,"Crete Astrophysics Group, Greece",8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/jeff-andrews/,1488758400,1489017600,2016,,2017,3/6/2017,3/9/2017,4,1,Postdoc,0,1 +643,N. Jeremy Kasdin,Princeton University,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/n-jeremy-kasdin/,1488240000,1488412800,2016,interdisciplinary-colloquia,2017,2/28/2017,3/2/2017,3,0,Astro Faculty,0,1 +1038,Nick Gnedin,Fermi National Accelerator Laboratory,8/23/2018,Faucher-Gigu�re Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/nick-gnedin/,1488412800,1488412800,2016,,2017,3/2/2017,3/2/2017,1,0,Postdoc,0,2 +1039,Andrey Kravstov,University of Chicago,8/23/2018,Faucher-Gigu�re Meeting (Claude-Andr� Faucher-Gigu�re),,https://ciera.northwestern.edu/visits/andrey-kravstov/,1488412800,1488412800,2016,,2017,3/2/2017,3/2/2017,1,0,Astro Faculty,0,2 +5472,Michael Perryman,University College Dublin,2/24/2017,,,https://ciera.northwestern.edu/visits/michael-perryman/,1487894400,1487894400,2016,theory-group-meetings,2017,2/24/2017,2/24/2017,1,1,Postdoc,0,1 +641,Nadia Zakamska,Johns Hopkins University,8/16/2018,Daniel Angles Alcazar,,https://ciera.northwestern.edu/visits/nadia-zakamska/,1487548800,1487721600,2016,astrophysics-seminars,2017,2/20/2017,2/22/2017,3,0,Group Meeting,0,1 +640,Dustin Lang,University of Toronto,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/dustin-lang/,1486944000,1487116800,2016,astrophysics-seminars,2017,2/13/2017,2/15/2017,3,1,Group Meeting,0,1 +638,Jessica Werk,University of Washington,8/16/2018,Alex Richings,,https://ciera.northwestern.edu/visits/jessica-werk/,1486339200,1486512000,2016,astrophysics-seminars,2017,2/6/2017,2/8/2017,3,0,Postdoc,0,2 +637,Cullen Blake,University of Pennsylvania,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/cullen-blake/,1486339200,1486425600,2016,special-astronomy-seminars,2017,2/6/2017,2/7/2017,2,0,Postdoc,0,2 +636,Alex Lazarian,University of Wisconsin - Madison,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/alex-lazarian/,1486080000,1486080000,2016,theory-group-meetings,2017,2/3/2017,2/3/2017,1,0,Postdoc,0,1 +634,Smadar Naoz,University of California - Los Angeles,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/smadar-naoz/,1485734400,1485907200,2016,astrophysics-seminars,2017,1/30/2017,2/1/2017,3,0,Postdoc,0,1 +633,Nacho A�ez,"Institute of Space Sciences-CSIC, Spain",8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/nacho-anez/,1484611200,1485734400,2016,,2017,1/17/2017,1/30/2017,14,1,Astro Faculty,0,1 +632,Tyler Groff,NASA Goddard Space Flight Center,8/16/2018,Mel Ulmer,,https://ciera.northwestern.edu/visits/tyler-groff/,1485129600,1485302400,2016,astrophysics-seminars,2017,1/23/2017,1/25/2017,3,0,Astro Faculty,0,1 +631,Ashley Zauderer,Harvard University,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/ashley-zauderer/,1484524800,1484697600,2016,astrophysics-seminars,2017,1/16/2017,1/18/2017,3,0,Postdoc,0,1 +630,Robert De Rosa,"University of California, Berkeley",8/16/2018,Mel Ulmer,,https://ciera.northwestern.edu/visits/robert-de-rosa/,1483920000,1484092800,2016,astrophysics-seminars,2017,1/9/2017,1/11/2017,3,0,Astro Faculty,0,1 +1035,Zoheyr Doctor,University of Chicago,8/23/2018,LIGO Collaborators Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/zoheyr-doctor/,1481500800,1481500800,2016,,2017,12/12/2016,12/12/2016,1,0,Group Meeting,0,3 +1036,Ben Farr,University of Chicago,8/23/2018,LIGO Collaborators Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/ben-farr/,1481500800,1481500800,2016,,2017,12/12/2016,12/12/2016,1,0,Astro Faculty,0,3 +1037,Dan Holz,University of Chicago,8/23/2018,LIGO Collaborators Meeting (Vicky Kalogera),,https://ciera.northwestern.edu/visits/dan-holz/,1481500800,1481500800,2016,,2017,12/12/2016,12/12/2016,1,0,Group Meeting,0,3 +629,Rebecca McElroy,University of Sydney,8/16/2018,Claude-Andr� Faucher Gigu�re,,https://ciera.northwestern.edu/visits/rebecca-mcelroy/,1481155200,1481241600,2016,special-astronomy-seminars,2017,12/8/2016,12/9/2016,2,1,Group Meeting,0,1 +628,Alexander Rasskazov,Rochester Institute of Technology,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/alexander-rasskazov/,1480464000,1480809600,2016,theory-group-meetings,2017,11/30/2016,12/4/2016,5,0,Group Meeting,0,3 +627,David Reitze,Laser Interferometer Gravitational-Wave Observatory Laboratory / California Institute of Technology,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/dave-reitze/,1480464000,1480636800,2016,interdisciplinary-colloquia,2017,11/30/2016,12/2/2016,3,1,Group Meeting,0,3 +625,Sasha Tchekhovskoy,"University of California, Berkeley",8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/sasha-tchekhovskoy/,1480464000,1480550400,2016,special-astronomy-seminars,2017,11/30/2016,12/1/2016,2,0,Group Meeting,0,3 +623,Jennifer van Saders,Carnegie Observatories,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/jennifer-van-saders/,1480291200,1480377600,2016,special-astronomy-seminars,2017,11/28/2016,11/29/2016,2,0,Group Meeting,0,2 +624,Eric Burns,"University of Alabama, Huntsville",8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/eric-burns/,1480291200,1480377600,2016,,2017,11/28/2016,11/29/2016,2,0,Group Meeting,0,2 +622,Anna Rosen,"University of California, Santa Cruz",8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/anna-rosen/,1479859200,1479859200,2016,,2017,11/23/2016,11/23/2016,1,0,Group Meeting,0,1 +621,Francois Foucart,Lawrence Berkeley National Laboratory,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/francois-foucart/,1479686400,1479772800,2016,special-astronomy-seminars,2017,11/21/2016,11/22/2016,2,0,Group Meeting,0,1 +618,Siyao Xu,"Peking University, Beijing",8/16/2018,"Giles Novak, Farhad Yusef-Zadeh",,https://ciera.northwestern.edu/visits/siyao-xu/,1479254400,1479427200,2016,special-astronomy-seminars,2017,11/16/2016,11/18/2016,3,1,Group Meeting,0,1 +619,Wen-fai Fong,University of Arizona,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/wen-fai-fong/,1479340800,1479427200,2016,astrophysics-seminars|special-astronomy-seminars,2017,11/17/2016,11/18/2016,2,0,Group Meeting,0,1 +617,Ondrej Pejcha,Princeton University,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/ondrej-pejcha/,1479081600,1479168000,2016,special-astronomy-seminars,2017,11/14/2016,11/15/2016,2,0,Postdoc,0,1 +615,Benjamin Montet,University of Chicago,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/benjamin-montet/,1478649600,1478822400,2016,special-astronomy-seminars,2017,11/9/2016,11/11/2016,3,0,Astro Faculty,0,1 +614,Jacob Simon,University of Colorado,8/16/2018,Adam Dempsey,,https://ciera.northwestern.edu/visits/jacob-simon/,1478131200,1478304000,2016,theory-group-meetings,2017,11/3/2016,11/5/2016,3,0,Postdoc,0,1 +613,Elad Steinberg,Hebrew University of Jerusalem,8/16/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/elad-steinberg/,1477872000,1477958400,2016,special-astronomy-seminars,2017,10/31/2016,11/1/2016,2,1,Astro Faculty,0,1 +612,Eve Lee,"University of California, Berkeley",8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/eve-lee/,1477526400,1477612800,2016,theory-group-meetings,2017,10/27/2016,10/28/2016,2,0,Postdoc,0,1 +611,"Doyal ""Al"" Harper","University of Chicago, Yerkes Observatory",8/16/2018,"Giles Novak, Mark Berthoud",,https://ciera.northwestern.edu/visits/doyal-al-harper/,1477440000,1477440000,2016,,2017,10/26/2016,10/26/2016,1,0,Other Faculty,1,1 +610,Stephen Taylor,California Institute of Technology / NASA Jet Propulsion Laboratory,8/16/2018,Laura Sampson,,https://ciera.northwestern.edu/visits/stephen-taylor/,1477267200,1477353600,2016,,2017,10/24/2016,10/25/2016,2,0,Other Faculty,0,1 +1027,Kevin Crowston,Syracuse University,8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/kevin-crowston-2/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Astro Faculty,0,6 +1029,Mabi Harandi,Syracuse University,8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/mabi-harandi-2/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Astro Faculty,0,6 +1031,Corey Jackson,Syracuse University,8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/corey-jackson-2/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Astro Faculty,0,6 +1032,Carsten Oesterlund,Syracuse University,8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/carsten-oesterlund-2/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Group Meeting,0,6 +1033,Joshua Smith,"California State University, Fullerton",8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/joshua-smith-3/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Group Meeting,0,6 +1034,Laura Trouille,Adler Planetarium/Zooniverse,8/23/2018,"Gravity Spy Meeting (Scott Coughlin, Mike Zevin)",,https://ciera.northwestern.edu/visits/laura-trouille-2/,1476921600,1477008000,2016,,2017,10/20/2016,10/21/2016,2,0,Group Meeting,0,6 +608,Chiara Mingarelli,Max Planck Institute for Gravitational Physics,8/16/2018,Shane Larson,,https://ciera.northwestern.edu/visits/chiara-mingarelli/,1476662400,1476835200,2016,,2017,10/17/2016,10/19/2016,3,1,Astro Faculty,0,1 +607,Eliza Kempton,Grinnell College,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/eliza-kempton-2/,1476316800,1476403200,2016,,2017,10/13/2016,10/14/2016,2,0,Postdoc,0,1 +606,Natalia Storch,California Institute of Technology,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/natalia-storch/,1476057600,1476230400,2016,astrophysics-seminars,2017,10/10/2016,10/12/2016,3,0,Astro Faculty,0,1 +605,Matt Payne,Harvard-Smithsonian Center for Astrophysics,8/16/2018,Ben Nelson,,https://ciera.northwestern.edu/visits/matt-payne/,1475712000,1475798400,2016,theory-group-meetings,2017,10/6/2016,10/7/2016,2,0,Postdoc,0,1 +601,Sarah Wellons,Harvard University,8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/sarah-wellons/,1475107200,1475280000,2016,theory-group-meetings,2017,9/29/2016,10/1/2016,3,0,Group Meeting,0,2 +603,Cliff Johnson,"University of California, San Diego",8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/cliff-johnson/,1475107200,1475193600,2016,theory-group-meetings,2017,9/29/2016,9/30/2016,2,0,Astro Faculty,0,2 +600,Xuening Bai,Harvard-Smithsonian Center for Astrophysics,8/16/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/xuening-bai/,1474848000,1475020800,2016,astrophysics-seminars,2017,9/26/2016,9/28/2016,3,0,Astro Faculty,0,1 +598,Nick Cowan,McGill University,8/16/2018,Joel Schwartz,,https://ciera.northwestern.edu/visits/nick-cowan/,1474588800,1474588800,2016,,2017,9/23/2016,9/23/2016,1,1,Group Meeting,0,1 +597,Peter K. G. Williams,Harvard-Smithsonian Center for Astrophysics,8/16/2018,Raffaella Margutti,,https://ciera.northwestern.edu/visits/peter-k-g-williams/,1474243200,1474416000,2016,astrophysics-seminars,2017,9/19/2016,9/21/2016,3,0,Postdoc,0,1 +595,Eliza Kempton,Grinnell College,8/16/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/eliza-kempton/,1473897600,1473897600,2016,theory-group-meetings,2017,9/15/2016,9/15/2016,1,0,Group Meeting,0,1 +1074,Vincent Dumont,"University of California, Berkeley",8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/vincent-dumont/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,0,Group Meeting,1,10 +1075,Samer Afach,Johannes Gutenberg University of Mainz,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/samer-afach/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Postdoc,1,10 +1076,Hector Masia Roig,Johannes Gutenberg University of Mainz,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/hector-masia-roig/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Group Meeting,0,10 +1077,Derek Kimball,"California State University, East Bay",8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow,,https://ciera.northwestern.edu/visits/derek-kimball/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,0,Astro Faculty,1,10 +1079,Wenhao Li,"Peking University / University of California, Berkeley",8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/wenhao-li/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Astro Faculty,0,10 +1080,Yun Shin,"CAPP, IBS",8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/yun-shin/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Astro Faculty,0,10 +1081,Dong-Ok Kim,Korea Advanced Institute of Science & Technology,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/dong-ok-kim/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Postdoc,0,10 +1082,Young Guen Kim,Korea Advanced Institute of Science & Technology,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/young-guen-kim/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Postdoc,0,10 +1083,Arne Wickenbrock,Johannes Gutenberg University of Mainz,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/arne-wickenbrock/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Group Meeting,0,10 +1084,Ben Roberts,University of New South Wales,8/23/2018,GNOME Data Analysis Bootcamp (Chris Pankow),,https://ciera.northwestern.edu/visits/ben-roberts/,1471392000,1471564800,2015,,2016,8/17/2016,8/19/2016,3,1,Group Meeting,0,10 +883,Evan Schneider,University of Arizona,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/evan-schneider/,1470268800,1470441600,2015,special-astronomy-seminars,2016,8/4/2016,8/6/2016,3,0,Group Meeting,0,1 +881,Tassos Fragos,Observatoire Astronomique de l'Universit� de Gen�ve,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tassos-fragos/,1460073600,1466380800,2015,,2016,4/8/2016,6/20/2016,74,1,Postdoc,0,1 +882,Jeff Andrews,"Crete Astrophysics Group, Greece",8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/jeff-andrews-3/,1462752000,1466380800,2015,theory-group-meetings,2016,5/9/2016,6/20/2016,43,1,Postdoc,0,2 +880,Nicholas Galitzki,University of Pennsylvania,8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/nicholas-galitzki/,1465171200,1465516800,2015,,2016,6/6/2016,6/10/2016,5,0,Postdoc,0,1 +1064,Alexander Ghosh,"University of Illinois, Urbana-Champaign",8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/alexander-ghosh/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Astro Faculty,0,9 +1065,Jian Cao,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/jian-cao/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Astro Faculty,0,9 +1066,Victoria Coverstone,"University of Illinois, Urbana-Champaign",8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/victoria-coverstone/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Postdoc,0,9 +1067,Kyle Condron,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/kyle-condron/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Postdoc,0,9 +1068,Shi Ye,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/shi-ye/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Grad Student,1,9 +1070,Qiang Zeng,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/qiang-zeng/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Astro Faculty,0,9 +1071,Yip-Wah Chung,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/yip-wah-chung/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Astro Faculty,0,9 +1072,Xiaoli Wang,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/xiaoli-wang/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Astro Faculty,0,9 +1073,John Everett,Northwestern University,8/23/2018,NIAC Kick-Off Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/john-everett/,1465344000,1465344000,2015,,2016,6/8/2016,6/8/2016,1,0,Group Meeting,0,9 +879,Nicholas Chapman,Center for Naval Analyses,8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/nicholas-chapman/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Grad Student,0,16 +1047,Ben Farr,University of Chicago,8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/ben-farr-2/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1048,Hsin-Yu Chen,University of Chicago,8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/hsin-yu-chen/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1050,Zoheyr Doctor,University of Chicago,8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/zoheyr-doctor-2/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1051,Dan Holz,University of Chicago,8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/dan-holz-2/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1053,Jolien Creighton,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/jolien-creighton/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1054,Ryan Lang,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/ryan-lang/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1055,Debnandini Mukherjee,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/debnandini-mukherjee/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1056,Hong Qi,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/hong-qi/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Grad Student,0,16 +1057,Sarah Caudill,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow,,https://ciera.northwestern.edu/visits/sarah-caudill/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1058,Xiaoshu Liu,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/xiaoshu-liu/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1059,Aaron Viets,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/aaron-viets/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1060,Alex Urban,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/alex-urban/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1061,Patrick Brady,"University of Wisconsin, Milwaukee",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/patrick-brady/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Astro Faculty,0,16 +1062,Eliu Huerta,"University of Illinois, Urbana-Champaign",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/eliu-huerta/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +1063,Ed Seidel,"University of Illinois, Urbana-Champaign",8/23/2018,Pre O2 Midwest Meetup (Chris Pankow),,https://ciera.northwestern.edu/visits/ed-seidel/,1464912000,1464912000,2015,,2016,6/3/2016,6/3/2016,1,0,Postdoc,0,16 +876,Juan Diego Soler Pulido,"Service d�Astrophysique, CEA. France",8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/juan-diego-soler-pulido/,1464825600,1464825600,2015,special-astronomy-seminars,2016,6/2/2016,6/2/2016,1,1,Postdoc,0,1 +870,Mads S�rensen,Geneva Observatory of the University of Geneva,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/mads-sorensen/,1459468800,1464739200,2015,theory-group-meetings,2016,4/1/2016,6/1/2016,62,1,Astro Faculty,0,1 +875,Jonathan Trump,Pennsylvania State University,8/21/2018,Daniel Angles-Alcazar,,https://ciera.northwestern.edu/visits/jonathan-trump/,1464566400,1464739200,2015,astrophysics-seminars,2016,5/30/2016,6/1/2016,3,0,Astro Faculty,0,1 +874,Wen-fai Fong,University of Arizona,8/21/2018,"Vicky Kalogera, Niharika Sravan, and Fani Dosopoulou",,https://ciera.northwestern.edu/visits/wen-fai-fong-3/,1463961600,1464134400,2015,,2016,5/23/2016,5/25/2016,3,0,Postdoc,0,2 +872,Jonathan Stern,Max Planck Institute for Astronomy (MPIA),8/21/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/jonathan-stern/,1463961600,1464048000,2015,special-astronomy-seminars,2016,5/23/2016,5/24/2016,2,1,Astro Faculty,0,2 +871,Daniel Jontof-Hutter,Pennsylvania State University,8/21/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/daniel-jontof-hutter/,1463356800,1463529600,2015,astrophysics-seminars,2016,5/16/2016,5/18/2016,3,0,Astro Faculty,0,1 +869,B-G Andersson,Universities Space Research Association / NASA Ames Research Center,8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/b-g-andersson/,1463011200,1463011200,2015,special-astronomy-seminars,2016,5/12/2016,5/12/2016,1,1,Astro Faculty,0,1 +868,Xavier Siemens,University of Wisconsin-Milwaukee,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/xavier-siemens/,1462752000,1462924800,2015,astrophysics-seminars,2016,5/9/2016,5/11/2016,3,1,Postdoc,0,2 +743,Matteo Cantiello,"University of California, Santa Barbara",8/16/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/matteo-cantiello/,1462147200,1462320000,2015,astrophysics-seminars,2016,5/2/2016,5/4/2016,3,0,Astro Faculty,0,1 +742,Ilse Cleeves,Harvard-Smithsonian Center for Astrophysics,8/16/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/ilse-cleeves/,1461542400,1461715200,2015,astrophysics-seminars,2016,4/25/2016,4/27/2016,3,0,Astro Faculty,0,1 +741,Ben Oppenheimer,"University of Colorado, Boulder",8/16/2018,Alex Richings,,https://ciera.northwestern.edu/visits/ben-oppenheimer/,1461110400,1461283200,2015,,2016,4/20/2016,4/22/2016,3,0,Postdoc,0,1 +738,Ethan Vishniac,Johns Hopkins University,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/ethan-vishniac/,1460419200,1460678400,2015,special-astronomy-seminars,2016,4/12/2016,4/15/2016,4,0,Postdoc,0,1 +740,Cliff Johnson,"University of California, San Diego",8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/cliff-johnson-3/,1460505600,1460678400,2015,,2016,4/13/2016,4/15/2016,3,0,Postdoc,0,1 +734,Alycia Weinberger,Carnegie Institution for Science,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/alycia-weinberger/,1460332800,1460505600,2015,astrophysics-seminars,2016,4/11/2016,4/13/2016,3,1,Astro Faculty,0,3 +736,Richard de Grijs,Peking University,8/16/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/richard-de-grijs/,1460332800,1460419200,2015,,2016,4/11/2016,4/12/2016,2,1,Postdoc,0,3 +737,Ryan Foley,"University of Illinois, Urbana-Champaign",8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ryan-foley-2/,1460332800,1460419200,2015,,2016,4/11/2016,4/12/2016,2,0,Postdoc,0,3 +731,Roger F. Malina,University of Texas at Dallas,8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/roger-f-malina/,1459987200,1459987200,2015,interdisciplinary-colloquia,2016,4/7/2016,4/7/2016,1,0,Astro Faculty,0,1 +729,Laura Chomiuk,Michigan State University,8/16/2018,"Fred Rasio, Sourav Chatterjee",,https://ciera.northwestern.edu/visits/laura-chomiuk/,1459123200,1459296000,2015,astrophysics-seminars,2016,3/28/2016,3/30/2016,3,0,Astro Faculty,0,1 +728,Manos Chatzopoulos,University of Chicago,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/manos-chatzopoulos/,1457654400,1457654400,2015,theory-group-meetings,2016,3/11/2016,3/11/2016,1,0,Group Meeting,0,1 +727,Tsevi Mazeh,Tel Aviv University,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/tsevi-mazeh/,1457395200,1457395200,2015,astrophysics-seminars,2016,3/8/2016,3/8/2016,1,1,Astro Faculty,0,1 +726,Julie Hlavacek-Larrondo,Universit� de Montr�al,8/16/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/julie-hlavacek-larrondo/,1456704000,1456790400,2015,astrophysics-seminars,2016,2/29/2016,3/1/2016,2,1,Postdoc,0,1 +725,Jamil A. Shariff,Case Western Reserve University,8/16/2018,Giles Novak,,https://ciera.northwestern.edu/visits/jamil-a-shariff/,1456358400,1456444800,2015,special-astronomy-seminars,2016,2/25/2016,2/26/2016,2,0,Postdoc,0,1 +723,Leslie Looney,University of Illinois at Urbana-Champaign,8/16/2018,Laura Fissel,,https://ciera.northwestern.edu/visits/leslie-looney/,1456099200,1456272000,2015,astrophysics-seminars,2016,2/22/2016,2/24/2016,3,0,Astro Faculty,0,1 +722,Ben Bar-Or,Institute for Advanced Study,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/ben-bar-or/,1455494400,1455667200,2015,astrophysics-seminars,2016,2/15/2016,2/17/2016,3,0,Postdoc,0,1 +721,Olivier Guyon,University of Arizona,8/16/2018," John Everett",,https://ciera.northwestern.edu/visits/olivier-guyon/,1454371200,1454544000,2015,interdisciplinary-colloquia,2016,2/2/2016,2/4/2016,3,0,Postdoc,0,1 +720,Raffaella Margutti,Harvard University,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/raffaella-margutti-2/,1454284800,1454371200,2015,special-astronomy-seminars,2016,2/1/2016,2/2/2016,2,0,Postdoc,0,1 +719,Ryan Foley,University of Illinois,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ryan-foley/,1453852800,1453939200,2015,special-astronomy-seminars,2016,1/27/2016,1/28/2016,2,0,Astro Faculty,0,1 +717,Branimir Sesar,Max Planck Institute for Astronomy,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/branimir-sesar/,1453680000,1453766400,2015,special-astronomy-seminars,2016,1/25/2016,1/26/2016,2,1,Astro Faculty,0,1 +712,Betsy Mills,National Radio Astronomy Observatory,8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/betsy-mills/,1453420800,1453420800,2015,theory-group-meetings,2016,1/22/2016,1/22/2016,1,0,Group Meeting,0,2 +714,Greg Mosby,University of Wisconsin-Madison,8/16/2018,"Mel Ulmer, Hooman Mohseni",,https://ciera.northwestern.edu/visits/greg-mosby/,1453420800,1453420800,2015,special-astronomy-seminars,2016,1/22/2016,1/22/2016,1,0,Astro Faculty,0,2 +711,Jennifer Yee,Harvard-Smithsonian Center for Astrophysics,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/jennifer-yee/,1453161600,1453248000,2015,special-astronomy-seminars,2016,1/19/2016,1/20/2016,2,0,Astro Faculty,0,1 +709,Ian Stephens,Boston University,8/16/2018,"Giles Novak, Farhad Yusef-Zadeh",,https://ciera.northwestern.edu/visits/ian-stephens/,1452643200,1452816000,2015,special-astronomy-seminars,2016,1/13/2016,1/15/2016,3,0,Astro Faculty,0,1 +710,Michael Tremmel,University of Wisconsin,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/michael-tremmel-2/,1452816000,1452816000,2015,theory-group-meetings,2016,1/15/2016,1/15/2016,1,0,Postdoc,0,1 +708,Tim Brandt,Institute for Advanced Study,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tim-brandt-2/,1452470400,1452556800,2015,special-astronomy-seminars,2016,1/11/2016,1/12/2016,2,0,Astro Faculty,0,1 +707,Chris Hayward,California Institute of Technology,8/16/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/christopher-c-hayward/,1450396800,1450396800,2015,,2016,12/18/2015,12/18/2015,1,0,Astro Faculty,0,1 +706,Emily Leiner,"University of Wisconsin, Madison",8/16/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/emily-leiner/,1449619200,1449619200,2015,,2016,12/9/2015,12/9/2015,1,0,Astro Faculty,0,1 +705,Elad Zinger,The Hebrew University of Jerusalem,8/16/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/elad-zinger/,1449100800,1449100800,2015,,2016,12/3/2015,12/3/2015,1,1,Postdoc,0,1 +704,Yuan Li,University of Michigan,8/16/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/yuan-li/,1448841600,1449014400,2015,astrophysics-seminars,2016,11/30/2015,12/2/2015,3,0,Postdoc,0,1 +703,Morgan MacLeod,"University of California, Santa Cruz",8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/morgan-macleod/,1448150400,1448323200,2015,special-astronomy-seminars,2016,11/22/2015,11/24/2015,3,0,Postdoc,0,1 +700,Shuo Zhang,Columbia University,8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/shuo-zhang/,1447891200,1448064000,2015,theory-group-meetings,2016,11/19/2015,11/21/2015,3,0,Postdoc,0,1 +702,Katerina Chatziioannou,Montana State University,8/16/2018,Laura Sampson,,https://ciera.northwestern.edu/visits/katerina-chatziioannou/,1447977600,1447977600,2015,theory-group-meetings,2016,11/20/2015,11/20/2015,1,0,Astro Faculty,0,1 +697,Maryam Modjaz,New York University,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/maryam-modjaz/,1447632000,1447804800,2015,astrophysics-seminars,2016,11/16/2015,11/18/2015,3,0,Astro Faculty,0,2 +696,John Tobin,Leiden Observatory,8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/john-tobin/,1447632000,1447718400,2015,special-astronomy-seminars,2016,11/16/2015,11/17/2015,2,1,Other Faculty,1,2 +693,Patricia Purdue,Colorado College,8/16/2018,Shane Larson,,https://ciera.northwestern.edu/visits/patricia-purdue/,1447027200,1447372800,2015,,2016,11/9/2015,11/13/2015,5,0,Astro Faculty,0,2 +5473,Greg Sloan,Cornell University,11/24/2015,,,https://ciera.northwestern.edu/visits/greg-sloan-2/,1447372800,1447372800,2015,theory-group-meetings,2016,11/13/2015,11/13/2015,1,0,Astro Faculty,0,1 +694,Dennis Lehmkuhl,California Institute of Technology,8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/dennis-lehmkuhl/,1447027200,1447200000,2015,interdisciplinary-colloquia,2016,11/9/2015,11/11/2015,3,0,Postdoc,0,2 +695,Tuguldur Sukhbold,University of California Santa Cruz,8/16/2018,Ron Taam,,https://ciera.northwestern.edu/visits/tuguldur-sukhbold/,1447200000,1447200000,2015,special-astronomy-seminars,2016,11/11/2015,11/11/2015,1,0,Postdoc,0,1 +690,Alan Stern,NASA / Southwest Research Institute,8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/alan-stern/,1446595200,1446768000,2015,ciera-annual-public-lectures,2016,11/4/2015,11/6/2015,3,1,Grad Student,0,1 +692,John Chisholm,University of Wisconsin-Madison,8/16/2018,John Everett,,https://ciera.northwestern.edu/visits/john-chisholm/,1446768000,1446768000,2015,theory-group-meetings,2016,11/6/2015,11/6/2015,1,0,Postdoc,0,1 +689,Raffaella Margutti,Harvard University,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/raffaella-margutti/,1446422400,1446595200,2015,astrophysics-seminars,2016,11/2/2015,11/4/2015,3,0,Astro Faculty,0,1 +688,Blake Sherwin,"University of California, Berkeley",8/16/2018,Claude-Andr� Faucher-Giguer�,,https://ciera.northwestern.edu/visits/blake-sherwin/,1446076800,1446163200,2015,theory-group-meetings,2016,10/29/2015,10/30/2015,2,0,Grad Student,0,2 +687,Rebekka Bieri,Institut d�Astrophysique de Paris,8/16/2018,Daniel Angles-Alcazar,,https://ciera.northwestern.edu/visits/rebekka-bieri/,1446076800,1446076800,2015,,2016,10/29/2015,10/29/2015,1,1,Astro Faculty,0,2 +686,Tim Brandt,Institute for Advanced Study,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tim-brandt/,1445817600,1445990400,2015,astrophysics-seminars,2016,10/26/2015,10/28/2015,3,0,Astro Faculty,0,1 +683,Thayne Currie,Subaru Telescope/NAOJ,8/16/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/thayne-currie/,1445212800,1445385600,2015,astrophysics-seminars,2016,10/19/2015,10/21/2015,3,0,Astro Faculty,0,1 +684,Will Farr,University of Birmingham,8/16/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/will-farr/,1445299200,1445385600,2015,,2016,10/20/2015,10/21/2015,2,1,Astro Faculty,0,1 +682,Tony Piro,Carnegie Observatories,8/16/2018,Francesca Valsecchi,,https://ciera.northwestern.edu/visits/tony-piro/,1444608000,1444780800,2015,astrophysics-seminars,2016,10/12/2015,10/14/2015,3,0,Astro Faculty,0,1 +681,Andrew W. Smith,"University of Maryland, College Park / NASA Goddard Space Flight Center",8/16/2018,Farhad Yusef-Zadeh,,https://ciera.northwestern.edu/visits/andrew-w-smith/,1444176000,1444348800,2015,special-astronomy-seminars,2016,10/7/2015,10/9/2015,3,1,Postdoc,0,1 +680,Amaury Triaud,"Centre for Planetary Sciences, University of Toronto",8/16/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/amaury-triaud/,1444003200,1444176000,2015,astrophysics-seminars,2016,10/5/2015,10/7/2015,3,1,Postdoc,0,1 +679,Ryan Cooke,"University of California, Santa Cruz",8/16/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/ryan-cooke/,1443398400,1443571200,2015,astrophysics-seminars,2016,9/28/2015,9/30/2015,3,0,Astro Faculty,0,1 +678,Zhaohuan Zhu,Princeton University,8/16/2018,Sourav Chatterjee,,https://ciera.northwestern.edu/visits/zhaohuan-zhu/,1442793600,1442966400,2015,astrophysics-seminars,2016,9/21/2015,9/23/2015,3,0,Astro Faculty,0,1 +677,Adrian Hamers,Leiden Observatory,8/16/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/adrian-hamers-2/,1442188800,1442534400,2015,special-astronomy-seminars,2016,9/14/2015,9/18/2015,5,1,Astro Faculty,0,1 +676,Nathan Leigh,American Museum of Natural History,8/16/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/nathan-leigh/,1439769600,1440028800,2015,,2015,8/17/2015,8/20/2015,4,0,Astro Faculty,1,1 +884,Emily Leiner,"University of Wisconsin, Madison",8/21/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/emily-leiner-2/,1435104000,1435276800,2014,,2015,6/24/2015,6/26/2015,3,0,Postdoc,1,2 +885,Robert Mathieu,"University of Wisconsin, Madison",8/21/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/robert-mathieu/,1435104000,1435190400,2014,,2015,6/24/2015,6/25/2015,2,0,Astro Faculty,0,2 +886,Benjamin Nelson,Pennsylvania State University,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/benjamin-nelson/,1434499200,1434585600,2014,,2015,6/17/2015,6/18/2015,2,0,Grad Student,1,1 +887,Garth Illingworth,UC Santa Cruz,8/21/2018,Mel Ulmer,,https://ciera.northwestern.edu/visits/garth-illingworth/,1433116800,1433289600,2014,astrophysics-seminars,2015,6/1/2015,6/3/2015,3,0,Grad Student,0,2 +888,Pablo Marchant,University of Bonn,8/21/2018,Francesca Valsecchi,,https://ciera.northwestern.edu/visits/pablo-marchant/,1433116800,1433289600,2014,special-astronomy-seminars,2015,6/1/2015,6/3/2015,3,1,Postdoc,0,2 +890,Tom Abel,Stanford University,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tom-abel/,1432512000,1432684800,2014,astrophysics-seminars,2015,5/25/2015,5/27/2015,3,0,Astro Faculty,0,1 +891,Edwin Bergin,University of Michigan,8/21/2018,Farhad Zadeh,,https://ciera.northwestern.edu/visits/edwin-bergin/,1431907200,1432080000,2014,astrophysics-seminars,2015,5/18/2015,5/20/2015,3,0,Astro Faculty,0,1 +1519,Laura Chomiuk,Michigan State University,9/13/2018,Globular Cluster Dynamics Mini-Workshop (Sourav Chatterjee),,https://ciera.northwestern.edu/visits/laura-chomiuk-2/,1430956800,1431129600,2014,,2015,5/7/2015,5/9/2015,3,0,Astro Faculty,0,4 +1520,Pranab Ghosh,Tata Institute of Fundamental Research,9/13/2018,Globular Cluster Dynamics Mini-Workshop (Sourav Chatterjee),,https://ciera.northwestern.edu/visits/pranab-ghosh-2/,1430956800,1431129600,2014,theory-group-meetings,2015,5/7/2015,5/9/2015,3,1,Postdoc,0,4 +1521,David Merritt,Rochester Institute of Technology,9/13/2018,Globular Cluster Dynamics Mini-Workshop (Sourav Chatterjee),,https://ciera.northwestern.edu/visits/david-merritt/,1430956800,1431129600,2014,theory-group-meetings,2015,5/7/2015,5/9/2015,3,0,Postdoc,0,4 +1522,Jay Strader,Michigan State University,9/13/2018,Globular Cluster Dynamics Mini-Workshop (Sourav Chatterjee),,https://ciera.northwestern.edu/visits/jay-strader/,1430956800,1431129600,2014,special-astronomy-seminars,2015,5/7/2015,5/9/2015,3,0,Grad Student,0,4 +922,Carl Haster,University of Birmingham,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/carl-haster/,1421020800,1431043200,2014,,2015,1/12/2015,5/8/2015,117,1,,1,1 +892,Phil Muirhead,Boston University,8/21/2018,Jason Steffen,,https://ciera.northwestern.edu/visits/phil-muirhead/,1430870400,1431043200,2014,astrophysics-seminars,2015,5/6/2015,5/8/2015,3,0,Astro Faculty,0,1 +893,Geoffrey Vasil,The University of Sydney,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/geoffrey-vasil/,1429488000,1429660800,2014,astrophysics-seminars,2015,4/20/2015,4/22/2015,3,1,Astro Faculty,0,1 +894,Scott Tremaine,Institute for Advanced Study,8/21/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/scott-tremaine/,1428537600,1428624000,2014,theory-group-meetings,2015,4/9/2015,4/10/2015,2,0,Astro Faculty,0,1 +895,Dawn Erb,"University of Wisconsin, Milwaukee",8/21/2018,Daniel Angles-Alcazar,,https://ciera.northwestern.edu/visits/dawn-erb/,1428364800,1428364800,2014,astrophysics-seminars,2015,4/7/2015,4/7/2015,1,0,Astro Faculty,0,1 +896,Marilena LoVerde,The University of Chicago,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/marilena-loverde/,1427760000,1427760000,2014,astrophysics-seminars,2015,3/31/2015,3/31/2015,1,0,Astro Faculty,0,1 +898,Benjamin Nelson,Pennsylvania State University,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/benjamin-nelson-2/,1425945600,1426032000,2014,,2015,3/10/2015,3/11/2015,2,0,Astro Faculty,0,1 +899,Edo Berger,Harvard University,8/21/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/edo-berger-2/,1425513600,1425600000,2014,theory-group-meetings,2015,3/5/2015,3/6/2015,2,0,Astro Faculty,0,1 +900,James Guillochon,Harvard University,8/21/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/james-guillochon/,1425254400,1425427200,2014,special-astronomy-seminars,2015,3/2/2015,3/4/2015,3,0,Astro Faculty,0,3 +901,Paul Torrey,Massachusetts Institute of Technology,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/paul-torrey/,1425254400,1425427200,2014,,2015,3/2/2015,3/4/2015,3,0,Postdoc,0,3 +902,Mark Reid,Harvard-Smithsonian Center for Astrophysics,8/21/2018,Farhad Zadeh,,https://ciera.northwestern.edu/visits/mark-reid/,1425254400,1425427200,2014,astrophysics-seminars,2015,3/2/2015,3/4/2015,3,0,Astro Faculty,0,3 +903,Paul Williams,University of Chicago,8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/paul-williams/,1424908800,1424995200,2014,,2015,2/26/2015,2/27/2015,2,0,Grad Student,0,1 +904,Sarah Gallagher,University of Western Ontario,8/21/2018,John Everett,,https://ciera.northwestern.edu/visits/sarah-gallagher/,1424649600,1424822400,2014,,2015,2/23/2015,2/25/2015,3,1,Grad Student,0,1 +905,Lucianne Walkowicz,Adler Planetarium / Large Synoptic Survey Telescope,8/21/2018,Francesca Valsecchi,,https://ciera.northwestern.edu/visits/lucianne-walkowicz/,1424044800,1424217600,2014,astrophysics-seminars,2015,2/16/2015,2/18/2015,3,1,Postdoc,0,1 +906,Cristobal Petrovich,Princeton University,8/21/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/cristobal-petrovich/,1423440000,1423526400,2014,,2015,2/9/2015,2/10/2015,2,0,Astro Faculty,0,2 +907,Ben McCall,"University of Illinois, Urbana-Champaign",8/21/2018,John Everett,,https://ciera.northwestern.edu/visits/ben-mccall/,1423440000,1423526400,2014,,2015,2/9/2015,2/10/2015,2,0,Grad Student,0,2 +908,Jeremy Webb,McMaster University,8/21/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/jeremy-webb/,1423094400,1423180800,2014,theory-group-meetings,2015,2/5/2015,2/6/2015,2,1,Astro Faculty,0,1 +909,Joshua Peek,Columbia University,8/21/2018,Giles Novak,,https://ciera.northwestern.edu/visits/joshua-peek/,1422835200,1423008000,2014,astrophysics-seminars,2015,2/2/2015,2/4/2015,3,0,Grad Student,0,1 +911,Nicholas McConnell,University of Hawai'i,8/21/2018,Daniel Angles-Alcazar,,https://ciera.northwestern.edu/visits/nicholas-mcconnell/,1422316800,1422489600,2014,special-astronomy-seminars,2015,1/27/2015,1/29/2015,3,1,Astro Faculty,0,1 +910,Serena Repetto,Radbound University,8/21/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/serena-repetto/,1422489600,1422489600,2014,theory-group-meetings,2015,1/29/2015,1/29/2015,1,1,Astro Faculty,0,1 +915,Frederick Davies,UCLA,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/frederick-davies/,1421712000,1422057600,2014,special-astronomy-seminars,2015,1/20/2015,1/24/2015,5,0,Postdoc,0,1 +913,Jungyeon Cho,"Chungnam National University, Korea",8/21/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/jungyeon-cho/,1421884800,1421971200,2014,theory-group-meetings,2015,1/22/2015,1/23/2015,2,1,Postdoc,0,2 +914,Monica Turner,Leiden Observatory,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/monica-turner/,1421884800,1421971200,2014,theory-group-meetings,2015,1/22/2015,1/23/2015,2,1,Astro Faculty,0,2 +916,Mariska Kriek,"University of California, Berkeley",8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/mariska-kriek/,1421625600,1421798400,2014,astrophysics-seminars,2015,1/19/2015,1/21/2015,3,0,Postdoc,0,1 +917,Paul Jones,University of New South Wales,8/21/2018,Laura Fissel,,https://ciera.northwestern.edu/visits/paul-jones/,1421366400,1421712000,2014,,2015,1/16/2015,1/20/2015,5,1,Postdoc,0,2 +918,Maria Cunningham,University of New South Wales,8/21/2018,Laura Fissel,,https://ciera.northwestern.edu/visits/maria-cunningham/,1421366400,1421712000,2014,special-astronomy-seminars,2015,1/16/2015,1/20/2015,5,1,Postdoc,0,2 +919,Alex Richings,Leiden Observatory,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/alex-richings/,1421280000,1421366400,2014,theory-group-meetings,2015,1/15/2015,1/16/2015,2,1,,1,2 +921,Jing Luan,California Institute of Technology,8/21/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/jing-luan/,1421280000,1421366400,2014,theory-group-meetings,2015,1/15/2015,1/16/2015,2,0,,1,2 +923,Doug Watson,University of Chicago,8/21/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/doug-watson/,1420416000,1420588800,2014,astrophysics-seminars,2015,1/5/2015,1/7/2015,3,0,,1,1 +925,Emily Leiner,"University of Wisconsin, Madison",8/21/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/emily-leiner-3/,1418774400,1418947200,2014,,2015,12/17/2014,12/19/2014,3,0,,1,2 +926,Robert Mathieu,"University of Wisconsin, Madison",8/21/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/robert-mathieu-2/,1418774400,1418947200,2014,,2015,12/17/2014,12/19/2014,3,0,,1,2 +940,Konstantin Pavlovskii,University of Alberta,8/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/konstantin-pavlovskii/,1417996800,1418342400,2014,special-astronomy-seminars,2015,12/8/2014,12/12/2014,5,1,,1,1 +941,Benedikt Diemer,University of Chicago,8/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/benedikt-diemer/,1417305600,1417478400,2014,special-astronomy-seminars,2015,11/30/2014,12/2/2014,3,0,,1,1 +942,Titos Matsakos,University of Chicago,8/22/2018,Francesca Valsecchi,,https://ciera.northwestern.edu/visits/titos-matsakos/,1416700800,1416873600,2014,special-astronomy-seminars,2015,11/23/2014,11/25/2014,3,0,,1,1 +943,Jacob Bean, University of Chicago,8/22/2018,Francesca Valsecchi,,https://ciera.northwestern.edu/visits/jacob-bean/,1416182400,1416355200,2014,astrophysics-seminars,2015,11/17/2014,11/19/2014,3,1,,1,1 +944,Saul Rappaport,Massachusetts Institute of Technology,8/22/2018,"Fred Rasio, Francesca Valsecchi",,https://ciera.northwestern.edu/visits/saul-rappaport/,1415491200,1415750400,2014,astrophysics-seminars,2015,11/9/2014,11/12/2014,4,0,,1,1 +945,Jeff Hazboun,Utah State University,8/22/2018,Shane Larson,,https://ciera.northwestern.edu/visits/jeff-hazboun/,1415577600,1415664000,2014,,2015,11/10/2014,11/11/2014,2,0,,1,1 +947,Paola Rodriguez Hidalgo,York University,8/22/2018,Fabio Antonini,,https://ciera.northwestern.edu/visits/paola-rodriguez-hidalgo/,1414368000,1415318400,2014,,2015,10/27/2014,11/7/2014,12,1,,1,2 +946,Joshua Smith,"California State University, Fullerton",8/22/2018,Shane Larson,,https://ciera.northwestern.edu/visits/joshua-smith/,1415232000,1415318400,2014,,2015,11/6/2014,11/7/2014,2,0,,1,1 +948,Gwen Rudie,Carnegie Institution for Science / Princeton University,8/22/2018,Daniel Angl�s-Alc�zar,,https://ciera.northwestern.edu/visits/gwen-rudie/,1414800000,1415145600,2014,astrophysics-seminars,2015,11/1/2014,11/5/2014,5,1,,1,1 +949,Ondrej Pejcha,Princeton University,8/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ondrej-pejcha-2/,1414886400,1415059200,2014,special-astronomy-seminars,2015,11/2/2014,11/4/2014,3,0,,1,1 +950,Douglas Heggie,University of Edinburgh,8/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/douglas-heggie/,1414281600,1414886400,2014,theory-group-meetings,2015,10/26/2014,11/2/2014,8,1,,1,2 +951,Gongjie Li,Harvard-Smithsonian Center for Astrophysics,8/22/2018,"Fred Rasio, Francesca Valsecchi",,https://ciera.northwestern.edu/visits/gongjie-li/,1414627200,1414713600,2014,theory-group-meetings,2015,10/30/2014,10/31/2014,2,0,,1,1 +953,James Stone,Princeton University,8/22/2018,John Everett,,https://ciera.northwestern.edu/visits/james-stone/,1414368000,1414540800,2014,interdisciplinary-colloquia,2015,10/27/2014,10/29/2014,3,0,,1,2 +954,Laura Sampson,Montana State University,8/22/2018,"Vicky Kalogera, Tyson Littenberg",,https://ciera.northwestern.edu/visits/laura-sampson/,1414281600,1414454400,2014,special-astronomy-seminars,2015,10/26/2014,10/28/2014,3,0,,1,2 +955,Rob Ferdman,McGill University,8/22/2018,"Vicky Kalogera, Fred Rasio",,https://ciera.northwestern.edu/visits/rob-ferdman/,1413936000,1414108800,2014,special-astronomy-seminars,2015,10/22/2014,10/24/2014,3,1,,1,1 +956,Rachel Friesen,"Dunlap Institute, University of Toronto",8/22/2018," Laura Fissel",,https://ciera.northwestern.edu/visits/rachel-friesen/,1413849600,1413936000,2014,astrophysics-seminars,2015,10/21/2014,10/22/2014,2,1,,1,1 +988,Ryan Foley,University of Illinois at Urbana-Champaign,8/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ryan-foley-3/,1413158400,1413331200,2014,astrophysics-seminars,2015,10/13/2014,10/15/2014,3,0,,1,1 +991,Daniele Trifir�,University of Mississippi,8/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/daniele-trifiro/,1406678400,1412726400,2014,,2014,7/30/2014,10/8/2014,71,0,Astro Faculty,1,1 +990,Andrew MacFadyen,New York University,8/22/2018,Shane Larson,,https://ciera.northwestern.edu/visits/andrew-macfadyen/,1412553600,1412726400,2014,astrophysics-seminars,2015,10/6/2014,10/8/2014,3,0,,1,1 +992,Natalie Gandilo,University of Toronto,8/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/natalie-gandilo/,1411948800,1412380800,2014,,2015,9/29/2014,10/4/2014,6,1,,1,1 +993,Mike McCourt,"University of California, Berkeley",8/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/mike-mccourt/,1411430400,1411430400,2014,astrophysics-seminars,2015,9/23/2014,9/23/2014,1,0,,1,1 +1772,Jay Bookbinder,Harvard-Smithsonian Center for Astrophysics,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/jay-bookbinder/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Astro Faculty,0,18 +1773,Jian Cao,Northwestern University,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/jian-cao-2/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Group Meeting,1,18 +1774,Yifang Cao,Northwestern University,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/yifang-cao/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Astro Faculty,0,18 +1775,Michael Garcia,NASA Headquarters,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/michael-garcia/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Grad Student,1,18 +1776,Misha Gubarev,Marshall Space Flight Center,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/misha-gubarev/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Astro Faculty,0,18 +1777,Walid Majid,NASA Jet Propulsion Laboratory,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/walid-majid/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Other Faculty,1,18 +1778,Robert Petre,NASA Goddard Space Flight Center,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/robert-petre/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Astro Faculty,0,18 +1779,Mike Pivovaroff,Lawrence Livermore National Laboratory,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/mike-pivovaroff/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,Astro Faculty,0,18 +1780,Paul Reid,Harvard-Smithsonian Center for Astrophysics,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/paul-reid/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1781,Suzanne Romaine,Harvard-Smithsonian Center for Astrophysics,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/suzanne-romaine/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1782,Wilton Sanders,NASA Headquarters,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/wilton-sanders/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1783,Mark Schattenburg,Massachusetts Institute of Technology,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/mark-schattenburg/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1784,Dan Schwartz,Harvard-Smithsonian Center for Astrophysics,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/dan-schwartz/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1786,Melville Ulmer,Northwestern University,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/melville-ulmer/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1787,Xiaoli Wang,Northwestern University,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/xiaoli-wang-2/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1788,Youwei Yao,Northwestern University,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/youwei-yao/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1789,William W. Zhang,NASA Goddard Space Flight Center,10/14/2018,X-ray Optics Splinter Meeting (Mel Ulmer),,https://ciera.northwestern.edu/visits/william-w-zhang/,1408665600,1408665600,2013,,2014,8/22/2014,8/22/2014,1,0,,1,18 +1791,Tassos Fragos,Harvard-Smithsonian Center for Astrophysics,10/14/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tassos-fragos-2/,1408665600,1408665600,2013,special-astronomy-seminars,2014,8/22/2014,8/22/2014,1,0,,1,18 +1807,Vasiliki Pavlidou,University of Crete,10/14/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/vasiliki-pavlidou/,1405987200,1406505600,2013,,2014,7/22/2014,7/28/2014,7,1,,1,2 +1808,Kostas Tassis,University of Crete,10/14/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/kostas-tassis/,1405987200,1406505600,2013,special-astronomy-seminars,2014,7/22/2014,7/28/2014,7,1,,1,2 +1792,Daniel Angles-Alcazar,University of Arizona,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/daniel-angles-alcazar/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,,1,12 +1793,Robert Feldmann,"University of California, Berkeley",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/robert-feldmann-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1794,Chris Hayward,Heidelberg Institute for Theoretical Studies,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/chris-hayward-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,1,Postdoc,1,12 +1795,Phil Hopkins,California Institute of Technology,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/phil-hopkins-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Grad Student,0,12 +1796,Dusan Keres,"University of California, San Diego",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/dusan-keres-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1797,Xiangcheng Ma,California Institute of Technology,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/xiangcheng-ma/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1799,Davide Martizzi,"University of California, Berkeley",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/davide-martizzi/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1800,Sasha Muratov,"University of California, San Diego",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/sasha-muratov/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1801,Norm Murray,Canadian Institute for Theoretical Astrophysics,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/norm-murray/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,1,Astro Faculty,0,12 +1802,Eliot Quataert,"University of California, Berkeley",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/eliot-quataert-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1804,Paul Torrey,Harvard University,10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/paul-torrey-2/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Astro Faculty,0,12 +1805,Freeke van de Voort,"University of California, Berkeley",10/14/2018,Galaxy Formation Workshop (Claude-Andr� Faucher-Giguer�),,https://ciera.northwestern.edu/visits/freeke-van-de-voort/,1406160000,1406332800,2013,,2014,7/24/2014,7/26/2014,3,0,Other Faculty,0,12 +1810,Patricia Purdue,Colorado College,10/14/2018,Shane Larson,,https://ciera.northwestern.edu/visits/patricia-purdue-2/,1404777600,1405382400,2013,,2014,7/8/2014,7/15/2014,8,0,,1,1 +1811,Julien Frouard,Institut de m�canique c�leste et de calcul des �ph�m�rides,10/14/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/julien-frouard/,1391904000,1401408000,2013,,2014,2/9/2014,5/30/2014,111,1,Group Meeting,0,1 +1812,Sweta Shah,Radboud University,10/14/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/sweta-shah/,1400803200,1400803200,2013,special-astronomy-seminars,2014,5/23/2014,5/23/2014,1,1,,1,1 +1813,Laura Lopez,Massachusetts Institute of Technology,10/14/2018,Daryl Haggard,,https://ciera.northwestern.edu/visits/laura-lopez/,1400544000,1400544000,2013,astrophysics-seminars,2014,5/20/2014,5/20/2014,1,0,,1,1 +1836,Sourav Chatterjee,University of Florida,10/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/sourav-chatterjee/,1399852800,1400025600,2013,,2014,5/12/2014,5/14/2014,3,0,,1,1 +1834,Alison Sills,McMaster University,10/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/alison-sills/,1399939200,1399939200,2013,astrophysics-seminars,2014,5/13/2014,5/13/2014,1,1,,1,1 +1837,David Kipping,Harvard-Smithsonian Center for Astrophysics,10/22/2018,Jason Steffen,,https://ciera.northwestern.edu/visits/david-kipping/,1399593600,1399593600,2013,theory-group-meetings,2014,5/9/2014,5/9/2014,1,0,Postdoc,0,2 +1838,Eleni Kalfountzou,Harvard-Smithsonian Center for Astrophysics,10/22/2018,Daryl Haggard,,https://ciera.northwestern.edu/visits/eleni-kalfountzou/,1399593600,1399593600,2013,special-astronomy-seminars,2014,5/9/2014,5/9/2014,1,0,Astro Faculty,0,2 +1839,Alex Lazarian,"UW, Madison",10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/alex-lazarian-2/,1399248000,1399507200,2013,special-astronomy-seminars,2014,5/5/2014,5/8/2014,4,0,,1,5 +1840,Jamil Sharif,University of Toronto,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/jamil-sharif/,1399248000,1399507200,2013,,2014,5/5/2014,5/8/2014,4,1,Postdoc,0,5 +1841,Steve Benton,University of Toronto,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/steve-benton/,1399248000,1399507200,2013,,2014,5/5/2014,5/8/2014,4,1,,1,5 +1842,Barth Netterfield,University of Toronto ,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/barth-netterfield/,1399248000,1399507200,2013,,2014,5/5/2014,5/8/2014,4,1,,1,5 +1843,Natalie Gandilo,University of Toronto ,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/natalie-gandilo-2/,1399248000,1399507200,2013,,2014,5/5/2014,5/8/2014,4,1,Postdoc,0,5 +1844,Josh Bloom,"University of California, Berkeley",10/22/2018,John Everett,,https://ciera.northwestern.edu/visits/josh-bloom/,1399420800,1399420800,2013,interdisciplinary-colloquia,2014,5/7/2014,5/7/2014,1,0,Astro Faculty,0,1 +1845,Michael Line,UC-Santa Cruz,10/22/2018,Nick Cowan,,https://ciera.northwestern.edu/visits/michael-line/,1399334400,1399334400,2013,astrophysics-seminars,2014,5/6/2014,5/6/2014,1,0,,1,1 +1846,Blakesley Burkhart,"University of Wisconsin, Madison / Harvard-Smithsonian Center for Astrophysics",10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/blakesley-burkhart/,1398988800,1398988800,2013,theory-group-meetings,2014,5/2/2014,5/2/2014,1,1,,1,1 +1848,Ron Hellings,Montana State University,10/22/2018,Shane Larson,,https://ciera.northwestern.edu/visits/ron-hellings/,1398038400,1398902400,2013,,2014,4/21/2014,5/1/2014,11,0,,1,2 +1847,Astrid Lamberts," University of Wisconsin, Milwaukee",10/22/2018,John Everett,,https://ciera.northwestern.edu/visits/astrid-lamberts-2/,1398902400,1398902400,2013,special-astronomy-seminars,2014,5/1/2014,5/1/2014,1,1,Postdoc,0,1 +1849,Daniel Holz,University of Chicago,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/daniel-holz/,1398729600,1398729600,2013,astrophysics-seminars,2014,4/29/2014,4/29/2014,1,0,Postdoc,0,1 +1850,Abigail Vieregg,University of Chicago,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/abigail-vieregg/,1398038400,1398038400,2013,special-astronomy-seminars,2014,4/21/2014,4/21/2014,1,0,,1,2 +1851,Richard de Grijs,Peking University,10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/richard-de-grijs-2/,1397001600,1397001600,2013,special-astronomy-seminars,2014,4/9/2014,4/9/2014,1,1,Astro Faculty,0,1 +1852,John Ruhl,Case Western Reserve University,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/john-ruhl/,1396915200,1396915200,2013,astrophysics-seminars,2014,4/8/2014,4/8/2014,1,0,Postdoc,0,1 +6106,John M. Grunsfeld,NASA,4/3/2014,,,https://ciera.northwestern.edu/visits/john-m-grunsfeld/,1396483200,1396569540,2013,ciera-annual-public-lectures,2014,4/3/2014,4/3/2014,1.999305556,0,Postdoc,0,3 +1853,Maria Zuber,Massachusetts Institute of Technology,10/22/2018,John Everett,,https://ciera.northwestern.edu/visits/maria-zuber/,1396483200,1396483200,2013,ciera-annual-public-lectures,2014,4/3/2014,4/3/2014,1,0,,1,3 +1854,Albert Stebbins,Fermi National Accelerator Laboratory,10/22/2018,Jason Steffen,,https://ciera.northwestern.edu/visits/albert-stebbins/,1396483200,1396483200,2013,special-astronomy-seminars,2014,4/3/2014,4/3/2014,1,0,Postdoc,0,3 +1855,Anil Seth,University of Utah ,10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/anil-seth/,1396224000,1396310400,2013,astrophysics-seminars,2014,3/31/2014,4/1/2014,2,0,,1,1 +1856,Andrew Howard,"University of Hawai'i, M?noa",10/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/andrew-howard/,1395100800,1395100800,2013,astrophysics-seminars,2014,3/18/2014,3/18/2014,1,1,,1,1 +1857,Quinn Konopacky,University of Toronto,10/22/2018,Nate Kaib,,https://ciera.northwestern.edu/visits/quinn-konopacky/,1394496000,1394496000,2013,astrophysics-seminars,2014,3/11/2014,3/11/2014,1,1,,1,1 +1858,Neal Dalal,University of illinois at Urbana-Champaign,10/22/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/neal-dalal/,1393891200,1393891200,2013,astrophysics-seminars,2014,3/4/2014,3/4/2014,1,0,,1,1 +1859,Kat Barger,University of Notre Dame,10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/kat-barger/,1393459200,1393459200,2013,special-astronomy-seminars,2014,2/27/2014,2/27/2014,1,0,,1,1 +1860,Xuening Bai,Harvard-Smithsonian Center for Astrophysics ,10/22/2018,Yoram Lithwick,,https://ciera.northwestern.edu/visits/xuening-bai-2/,1393372800,1393372800,2013,special-astronomy-seminars,2014,2/26/2014,2/26/2014,1,0,,1,1 +1861,Andrey Kravtsov,University of Chicago,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/andrey-kravtsov/,1393286400,1393286400,2013,astrophysics-seminars,2014,2/25/2014,2/25/2014,1,0,,1,3 +1862,Megan DeCesar,"University of Wisconsin, Milwaukee",10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/megan-decesar/,1393286400,1393286400,2013,,2014,2/25/2014,2/25/2014,1,0,,1,3 +1863,David Kaplan,"University of Wisconsin, Milwaukee",10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/david-kaplan/,1393286400,1393286400,2013,,2014,2/25/2014,2/25/2014,1,0,,1,3 +1864,Tony Tyson,LSST Chief Scientist,10/22/2018,John Everett,,https://ciera.northwestern.edu/visits/tony-tyson/,1392595200,1392595200,2013,interdisciplinary-colloquia,2014,2/17/2014,2/17/2014,1,1,Group Meeting,0,1 +1865,Jason Dexter,"University of California, Berkeley",10/22/2018,Daryl Haggard,,https://ciera.northwestern.edu/visits/jason-dexter/,1392076800,1392076800,2013,astrophysics-seminars,2014,2/11/2014,2/11/2014,1,0,Group Meeting,0,1 +1866,Daniel Angles-Alcazar,University of Arizona,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/daniel-angles-alcazar-2/,1391558400,1391644800,2013,,2014,2/5/2014,2/6/2014,2,0,Group Meeting,0,1 +1867,Katherine Deck,Massachusetts Institute of Technology,10/22/2018,Jason Steffen,,https://ciera.northwestern.edu/visits/katherine-deck/,1390867200,1390953600,2013,special-astronomy-seminars,2014,1/28/2014,1/29/2014,2,0,Group Meeting,0,1 +1868,Pascale Garaud,UC Santa Cruz ,10/22/2018,Elizabeth Hicks,,https://ciera.northwestern.edu/visits/pascale-garaud/,1390780800,1390780800,2013,astrophysics-seminars,2014,1/27/2014,1/27/2014,1,0,Astro Faculty,0,2 +1869,Simeon Bird,Institute for Advanced Study,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/simeon-bird/,1390780800,1390780800,2013,special-astronomy-seminars,2014,1/27/2014,1/27/2014,1,0,Astro Faculty,0,2 +1870,Jenny Greene,Princeton University,10/22/2018,Laura Trouille,,https://ciera.northwestern.edu/visits/jenny-greene/,1390176000,1390348800,2013,astrophysics-seminars,2014,1/20/2014,1/22/2014,3,0,Postdoc,0,1 +1871,Chuck Hailey,Columbia University / Nuclear Spectroscopic Telescope Array,10/22/2018,Farhad Zadeh,,https://ciera.northwestern.edu/visits/chuck-hailey/,1389657600,1389657600,2013,astrophysics-seminars,2014,1/14/2014,1/14/2014,1,1,Group Meeting,0,1 +1872,Eliot Quataert,"University of California, Berkeley",10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/eliot-quataert-3/,1389139200,1389139200,2013,special-astronomy-seminars,2014,1/8/2014,1/8/2014,1,0,Postdoc,0,1 +1873,Robyn Sanderson,Kapteyn Astronomical Institute,10/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/robyn-sanderson/,1386892800,1386892800,2013,theory-group-meetings,2014,12/13/2013,12/13/2013,1,1,Group Meeting,0,1 +1875,George Moellenbrock,National Radio Astronomy Observatory,10/22/2018,Farhad Zadeh,,https://ciera.northwestern.edu/visits/george-moellenbrock/,1386547200,1386720000,2013,,2014,12/9/2013,12/11/2013,3,0,Group Meeting,0,1 +1876,Brian Metzger,Columbia University,10/22/2018,Fred Rasio,,https://ciera.northwestern.edu/visits/brian-metzger/,1386028800,1386028800,2013,astrophysics-seminars,2014,12/3/2013,12/3/2013,1,0,Group Meeting,0,1 +1878,Brad Dober,University of Pennsylvania,10/22/2018,Giles Novak,,https://ciera.northwestern.edu/visits/brad-dober/,1384992000,1385510400,2013,,2014,11/21/2013,11/27/2013,7,0,Group Meeting,0,1 +1877,Eric Gaidos,University of Hawai'i,10/22/2018,Nick Cowan,,https://ciera.northwestern.edu/visits/eric-gaidos/,1385424000,1385424000,2013,special-astronomy-seminars,2014,11/26/2013,11/26/2013,1,1,Group Meeting,0,1 +1879,Natalie Gosnell,University of Wisconsin - Madison,10/22/2018,Aaron Geller,,https://ciera.northwestern.edu/visits/natalie-gosnell/,1384819200,1384992000,2013,special-astronomy-seminars,2014,11/19/2013,11/21/2013,3,0,Astro Faculty,0,2 +1880,Linda Strubbe,University of Toronto,10/22/2018,Junfeng Wang,,https://ciera.northwestern.edu/visits/linda-strubbe/,1384819200,1384819200,2013,astrophysics-seminars,2014,11/19/2013,11/19/2013,1,1,Group Meeting,0,2 +1881,Sijing Shen,University of California Santa Cruz,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/sijing-shen/,1384473600,1384473600,2013,theory-group-meetings,2014,11/15/2013,11/15/2013,1,0,Astro Faculty,0,1 +1882,Mario Juric,Large Synoptic Survey Telescope,10/22/2018,John Everett,,https://ciera.northwestern.edu/visits/mario-juric/,1384128000,1384300800,2013,interdisciplinary-colloquia,2014,11/11/2013,11/13/2013,3,1,Astro Faculty,0,1 +1884,Chris Hayward,Heidelberg Institute for Theoretical Studies,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/chris-hayward-3/,1383782400,1383782400,2013,special-astronomy-seminars,2014,11/7/2013,11/7/2013,1,1,Postdoc,0,1 +1885,Karen Yang,University of Michigan ,10/22/2018,Farhad Zadeh,,https://ciera.northwestern.edu/visits/karen-yang/,1383609600,1383609600,2013,astrophysics-seminars,2014,11/5/2013,11/5/2013,1,0,Group Meeting,0,1 +1886,Rosalba Perna,University of Colorado,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/rosalba-perna/,1382313600,1382486400,2013,astrophysics-seminars,2014,10/21/2013,10/23/2013,3,0,Astro Faculty,0,1 +1888,Benjamin Oppenheimer,Leiden/Colorado,10/22/2018,Claude-Andr� Faucher-Gigu�re,,https://ciera.northwestern.edu/visits/benjamin-oppenheimer-2/,1381968000,1382054400,2013,theory-group-meetings,2014,10/17/2013,10/18/2013,2,1,,1,1 +1898,Konstantin Batygin,Harvard University,10/22/2018,Nathan Kaib,,https://ciera.northwestern.edu/visits/konstantin-batygin-2/,1381708800,1381968000,2013,astrophysics-seminars,2014,10/14/2013,10/17/2013,4,0,Group Meeting,0,1 +1889,Bret Lehmer,NASA Goddard Space Flight Center,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/bret-lehmer/,1381795200,1381968000,2013,,2014,10/15/2013,10/17/2013,3,0,Postdoc,0,5 +1890,Tassos Fragos,Harvard-Smithsonian Center for Astrophysics,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/tassos-fragos-3/,1381795200,1381968000,2013,,2014,10/15/2013,10/17/2013,3,0,Astro Faculty,0,5 +1891,Andrew Ptak,NASA,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/andrew-francis-ptak/,1381795200,1381968000,2013,,2014,10/15/2013,10/17/2013,3,0,Grad Student,0,5 +1892,Panayiotis Tzanavaris,NASA Goddard Space Flight Center,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris/,1381795200,1381968000,2013,,2014,10/15/2013,10/17/2013,3,0,Astro Faculty,0,5 +1893,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/andreas-zezas/,1381795200,1381968000,2013,,2014,10/15/2013,10/17/2013,3,0,Astro Faculty,0,5 +1894,Valsamo Antoniou,Harvard-Smithsonian Center for Astrophysics,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/valsamo-antoniou/,1381881600,1381968000,2013,,2014,10/16/2013,10/17/2013,2,0,Astro Faculty,0,4 +1895,Antara Basu-Zych,NASA,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/antara-basu-zych/,1381881600,1381968000,2013,,2014,10/16/2013,10/17/2013,2,0,Astro Faculty,0,4 +1896,Ann Hornschemeier,NASA,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ann-hornschemeier/,1381881600,1381968000,2013,,2014,10/16/2013,10/17/2013,2,0,Group Meeting,0,4 +1897,Mihoko Yukita,Johns Hopkins University,10/22/2018,Vicky Kalogera,,https://ciera.northwestern.edu/visits/mihoko-yukita/,1381881600,1381968000,2013,,2014,10/16/2013,10/17/2013,2,0,,1,4 +1899,Elena Gallo,University of Michigan,10/22/2018,Daryl Haggard,,https://ciera.northwestern.edu/visits/elena-gallo/,1381190400,1381190400,2013,astrophysics-seminars,2014,10/8/2013,10/8/2013,1,0,Astro Faculty,0,1 +1900,Neal Evans,University of Texas at Austin,10/22/2018,Nicholas Chapman,,https://ciera.northwestern.edu/visits/neal-evans/,1380585600,1380585600,2013,astrophysics-seminars,2014,10/1/2013,10/1/2013,1,0,Postdoc,0,1 +2114,J�rg Weingrill,Leibniz-Institut f�r Astrophysik Potsdam,11/5/2018,,IC4756: Cluster Membership and Stellar Rotation Periods,https://ciera.northwestern.edu/visits/jorg-weingrill/,1377820800,1377820800,2012,special-astronomy-seminars,2013,8/30/2013,8/30/2013,1,1,Group Meeting,1,1 +2115,Mark Wardle,Macquarie University,11/5/2018,,,https://ciera.northwestern.edu/visits/mark-wardle/,1371427200,1371945600,2012,,2013,6/17/2013,6/23/2013,7,1,Astro Faculty,1,1 +2116,Fred Ciesla,University of Chicago,11/5/2018,,,https://ciera.northwestern.edu/visits/fred-ciesla/,1369699200,1369699200,2012,astrophysics-seminars,2013,5/28/2013,5/28/2013,1,0,Astro Faculty,0,1 +2118,Dieter Hartmann,Clemson University,11/5/2018,,,https://ciera.northwestern.edu/visits/dieter-hartmann/,1369267200,1369267200,2012,special-astronomy-seminars,2013,5/23/2013,5/23/2013,1,0,Astro Faculty,0,1 +2119,Neil Cornish,Montana State University,11/5/2018,,,https://ciera.northwestern.edu/visits/neil-cornish/,1368662400,1368662400,2012,special-astronomy-seminars,2013,5/16/2013,5/16/2013,1,0,Group Meeting,0,1 +2121,Enrico Vesperini,"Indiana University, Bloomington",11/5/2018,,,https://ciera.northwestern.edu/visits/enrico-vesperini/,1368489600,1368489600,2012,astrophysics-seminars,2013,5/14/2013,5/14/2013,1,0,Group Meeting,0,1 +2122,Antonis Manousakis,N.Copernicus Astronomical Center,11/5/2018,,,https://ciera.northwestern.edu/visits/antonis-manousakis/,1368057600,1368057600,2012,,2013,5/9/2013,5/9/2013,1,1,Group Meeting,0,1 +2123,Tim Slater,University of Wyoming ,11/5/2018,,,https://ciera.northwestern.edu/visits/tim-slater/,1367798400,1367798400,2012,interdisciplinary-colloquia,2013,5/6/2013,5/6/2013,1,0,Group Meeting,0,1 +2128,Fabio Antonini,Canadian Institute for Theoretical Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/fabio-antonini/,1367280000,1367280000,2012,theory-group-meetings,2013,4/30/2013,4/30/2013,1,1,Group Meeting,0,2 +2129,Leo Singer,California Institute of Technology,11/5/2018,,,https://ciera.northwestern.edu/visits/leo-singer/,1367280000,1367280000,2012,special-astronomy-seminars,2013,4/30/2013,4/30/2013,1,0,Group Meeting,0,2 +2130,John Lacy,The University of Texas at Austin ,11/5/2018,,,https://ciera.northwestern.edu/visits/john-lacy/,1366675200,1366675200,2012,astrophysics-seminars,2013,4/23/2013,4/23/2013,1,0,Group Meeting,0,1 +2131,Alexandros Gianninas,University of Oklahoma,11/5/2018,,,https://ciera.northwestern.edu/visits/alexandros-gianninas/,1365638400,1365638400,2012,theory-group-meetings,2013,4/11/2013,4/11/2013,1,0,Postdoc,1,1 +2132,Daniel Fabrycky,University of Chicago,11/5/2018,,,https://ciera.northwestern.edu/visits/daniel-fabrycky/,1365465600,1365465600,2012,astrophysics-seminars,2013,4/9/2013,4/9/2013,1,0,Astro Faculty,0,1 +2133,Andrew Brown,University of Southampton,11/5/2018,,,https://ciera.northwestern.edu/visits/andrew-brown/,1365379200,1365379200,2012,special-astronomy-seminars,2013,4/8/2013,4/8/2013,1,1,Astro Faculty,0,1 +2134,Jim Fuller,Cornell University,11/5/2018,,,https://ciera.northwestern.edu/visits/jim-fuller/,1365033600,1365033600,2012,,2013,4/4/2013,4/4/2013,1,0,Other Faculty,1,1 +2135,Christine Jones-Forman,Harvard-Smithsonian Center for Astrophysics ,11/5/2018,,,https://ciera.northwestern.edu/visits/christine-jones-forman/,1363651200,1363651200,2012,astrophysics-seminars,2013,3/19/2013,3/19/2013,1,0,Postdoc,0,1 +2136,Andrew Youdin,University of Colorado,11/5/2018,,,https://ciera.northwestern.edu/visits/andrew-youdin/,1363132800,1363219200,2012,special-astronomy-seminars,2013,3/13/2013,3/14/2013,2,0,Group Meeting,0,1 +2137,Josh Carter,Harvard-Smithsonian Center for Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/josh-carter/,1363046400,1363046400,2012,astrophysics-seminars,2013,3/12/2013,3/12/2013,1,0,Astro Faculty,0,1 +5161,David Hogg,New York University,3/5/2013,,,https://ciera.northwestern.edu/visits/david-hogg/,1362441600,1362441600,2013,interdisciplinary-colloquia,2013,3/5/2013,3/5/2013,1,0,Astro Faculty,0,1 +2138,Amber Straughn,NASA Goddard Space Flight Center,11/5/2018,,,https://ciera.northwestern.edu/visits/amber-straughn/,1361836800,1361836800,2012,astrophysics-seminars,2013,2/26/2013,2/26/2013,1,0,Group Meeting,0,1 +2139,Jacqueline Radigan,Space Telescope Science Institute,11/5/2018,,,https://ciera.northwestern.edu/visits/jacqueline-radigan/,1359936000,1360713600,2012,astrophysics-seminars,2013,2/4/2013,2/13/2013,10,0,Astro Faculty,0,2 +2140,Aaron Boley,University of Florida,11/5/2018,,,https://ciera.northwestern.edu/visits/aaron-boley/,1360195200,1360195200,2012,special-astronomy-seminars,2013,2/7/2013,2/7/2013,1,0,Group Meeting,0,1 +2141,Nick Stone,Harvard-Smithsonian Center for Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/nick-stone/,1360108800,1360108800,2012,,2013,2/6/2013,2/6/2013,1,0,Astro Faculty,0,1 +2142,Leslie Rogers,California Institute of Technology,11/5/2018,,,https://ciera.northwestern.edu/visits/leslie-rogers/,1359936000,1359936000,2012,astrophysics-seminars|special-astronomy-seminars,2013,2/4/2013,2/4/2013,1,0,Postdoc,0,2 +2143,Bence Kocsis,Harvard University,11/5/2018,,,https://ciera.northwestern.edu/visits/bence-kocsis/,1359590400,1359676800,2012,special-astronomy-seminars,2013,1/31/2013,2/1/2013,2,0,Grad Student,1,1 +2144,Shane Davis,University of Toronto,11/5/2018,,,https://ciera.northwestern.edu/visits/shane-davis/,1359331200,1359417600,2012,special-astronomy-seminars,2013,1/28/2013,1/29/2013,2,1,Grad Student,0,1 +2146,John E. Vaillancourt,USRA and NASA Ames Research Center,11/5/2018,,,https://ciera.northwestern.edu/visits/john-e-vaillancourt/,1358812800,1358899200,2012,special-astronomy-seminars,2013,1/22/2013,1/23/2013,2,0,Group Meeting,0,2 +2147,Aristotle Socrates,Institute for Advanced Study,11/5/2018,,,https://ciera.northwestern.edu/visits/aristotle-socrates/,1358812800,1358812800,2012,special-astronomy-seminars,2013,1/22/2013,1/22/2013,1,0,Astro Faculty,0,2 +2148,Claude-Andr� Faucher-Gigu�re,"University of California, Berkeley",11/5/2018,,,https://ciera.northwestern.edu/visits/claude-andre-faucher-giguere/,1358380800,1358467200,2012,special-astronomy-seminars,2013,1/17/2013,1/18/2013,2,0,Postdoc,0,1 +2149,Kaitlin Kratter,"University of Colorado, Boulder",11/5/2018,,,https://ciera.northwestern.edu/visits/kaitlin-kratter/,1358121600,1358208000,2012,astrophysics-seminars|special-astronomy-seminars,2013,1/14/2013,1/15/2013,2,0,Astro Faculty,0,1 +2150,Vivien Raymond,California Institute of Technology,11/5/2018,,,https://ciera.northwestern.edu/visits/vivien-raymond/,1355356800,1355961600,2012,,2013,12/13/2012,12/20/2012,8,0,Postdoc,0,1 +2151,Josh Faber,Rochester Institute of Technology,11/5/2018,,,https://ciera.northwestern.edu/visits/josh-faber/,1354752000,1354752000,2012,theory-group-meetings,2013,12/6/2012,12/6/2012,1,0,Group Meeting,0,1 +2152,Alyssa Goodman,Harvard University,11/5/2018,,,https://ciera.northwestern.edu/visits/alyssa-goodman/,1354233600,1354233600,2012,interdisciplinary-colloquia|astrophysics-seminars,2013,11/30/2012,11/30/2012,1,0,Group Meeting,0,1 +2153,John W. Hewitt,"University of Maryland, Baltimore County / NASA Goddard Space Flight Center",11/5/2018,,,https://ciera.northwestern.edu/visits/john-w-hewitt/,1353888000,1353888000,2012,special-astronomy-seminars,2013,11/26/2012,11/26/2012,1,1,Astro Faculty,0,1 +2154,Jill P. Naiman,"University of California, Santa Cruz",11/5/2018,,,https://ciera.northwestern.edu/visits/jill-p-naiman/,1352678400,1353024000,2012,theory-group-meetings,2013,11/12/2012,11/16/2012,5,0,Group Meeting,0,2 +2155,Jon Jenkins,SETI Institute / NASA Ames Research Center ,11/5/2018,,,https://ciera.northwestern.edu/visits/jon-jenkins/,1352764800,1352764800,2012,astrophysics-seminars,2013,11/13/2012,11/13/2012,1,1,Group Meeting,0,1 +2156,Belinda Wilkes,Harvard-Smithsonian Center for Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/belinda-wilkes-2/,1352678400,1352678400,2012,special-astronomy-seminars,2013,11/12/2012,11/12/2012,1,0,Group Meeting,0,2 +2159,Tim Linden,"University of California, Santa Cruz",11/5/2018,,,https://ciera.northwestern.edu/visits/tim-linden/,1352246400,1352419200,2012,theory-group-meetings,2013,11/7/2012,11/9/2012,3,0,Postdoc,0,1 +2157,Jeremy Goodman,Princeton University,11/5/2018,,,https://ciera.northwestern.edu/visits/jeremy-goodman/,1352160000,1352160000,2012,astrophysics-seminars,2013,11/6/2012,11/6/2012,1,0,Postdoc,0,1 +2158,Fausto Cattaneo,The University of Chicago ,11/5/2018,,,https://ciera.northwestern.edu/visits/fausto-cattaneo/,1351555200,1351555200,2012,astrophysics-seminars,2013,10/30/2012,10/30/2012,1,0,Astro Faculty,0,1 +2160,Tim Morton,California Institute of Technology,11/5/2018,,,https://ciera.northwestern.edu/visits/tim-morton/,1351036800,1351209600,2012,theory-group-meetings,2013,10/24/2012,10/26/2012,3,0,Postdoc,0,1 +2161,Nicholas McConnell,"University of California, Berkeley",11/5/2018,,,https://ciera.northwestern.edu/visits/nicholas-mcconnell-2/,1350864000,1351036800,2012,,2013,10/22/2012,10/24/2012,3,0,Group Meeting,0,1 +2163,Sara Ellison,University of Victoria,11/5/2018,,,https://ciera.northwestern.edu/visits/sara-ellison/,1350950400,1350950400,2012,astrophysics-seminars,2013,10/23/2012,10/23/2012,1,1,Group Meeting,0,1 +2165,Ali Vanderveld,The University of Chicago,11/5/2018,,,https://ciera.northwestern.edu/visits/ali-vanderveld/,1350345600,1350345600,2012,astrophysics-seminars,2013,10/16/2012,10/16/2012,1,0,Astro Faculty,0,1 +2166,Sean T. McWilliams,Princeton University,11/5/2018,,,https://ciera.northwestern.edu/visits/sean-t-mcwilliams/,1349913600,1349913600,2012,theory-group-meetings,2013,10/11/2012,10/11/2012,1,0,Astro Faculty,0,1 +2167,Ethan Vishniac,McMaster University,11/5/2018,,,https://ciera.northwestern.edu/visits/ethan-vishniac-2/,1349740800,1349740800,2012,astrophysics-seminars,2013,10/9/2012,10/9/2012,1,1,Postdoc,0,1 +2168,Bekki Dawson,Harvard University,11/5/2018,,,https://ciera.northwestern.edu/visits/bekki-dawson/,1349222400,1349395200,2012,theory-group-meetings,2013,10/3/2012,10/5/2012,3,0,Astro Faculty,0,1 +2169,Brett Gladman,University of British Columbia,11/5/2018,,,https://ciera.northwestern.edu/visits/brett-gladman/,1349136000,1349136000,2012,astrophysics-seminars,2013,10/2/2012,10/2/2012,1,1,Postdoc,0,1 +2170,Gordon Richards,Drexel University,11/5/2018,,,https://ciera.northwestern.edu/visits/gordon-richards/,1348531200,1348531200,2012,astrophysics-seminars,2013,9/25/2012,9/25/2012,1,0,Astro Faculty,0,1 +2171,Richard de Grijs,Peking University,11/5/2018,,,https://ciera.northwestern.edu/visits/richard-de-grijs-3/,1347580800,1347580800,2012,special-astronomy-seminars,2013,9/14/2012,9/14/2012,1,1,Group Meeting,0,1 +2172,Sourav Chatterjee,University of Florida,11/5/2018,,,https://ciera.northwestern.edu/visits/sourav-chatterjee-2/,1340582400,1341360000,2011,,2012,6/25/2012,7/4/2012,10,0,Postdoc,1,1 +2173,Mark Wardle,Macquarie University,11/5/2018,,,https://ciera.northwestern.edu/visits/mark-wardle-2/,1340236800,1340236800,2011,special-astronomy-seminars,2012,6/21/2012,6/21/2012,1,1,Astro Faculty,1,1 +5201,Bill Cotton,National Radio Astronomy Observatory,6/30/2020,,,https://ciera.northwestern.edu/visits/bill-cotton/,1338854400,1338854400,2012,astrophysics-seminars,2012,6/5/2012,6/5/2012,1,0,Group Meeting,1,1 +2176,Kenza Arraki,New Mexico State University,11/5/2018,,,https://ciera.northwestern.edu/visits/kenza-arraki/,1337558400,1338422400,2011,,2012,5/21/2012,5/31/2012,11,0,Postdoc,0,3 +5200,Simona Vegetti,Massachusetts Institute of Technology,5/30/2012,,,https://ciera.northwestern.edu/visits/simona-vegetti/,1338249600,1338249600,2012,astrophysics-seminars,2012,5/29/2012,5/29/2012,1,0,Group Meeting,0,1 +2174,Jeremy Sepinsky,The University of Scranton,11/5/2018,,,https://ciera.northwestern.edu/visits/jeremy-sepinsky/,1337558400,1337904000,2011,special-astronomy-seminars,2012,5/21/2012,5/25/2012,5,0,Group Meeting,0,3 +5162,Don Figer,Rochester Institute of Technology,5/21/2012,,,https://ciera.northwestern.edu/visits/don-figer/,1337558400,1337558400,2012,interdisciplinary-colloquia|astrophysics-seminars,2012,5/21/2012,5/21/2012,1,0,Group Meeting,0,3 +2177,Jeff Andrews,Columbia University,11/5/2018,,,https://ciera.northwestern.edu/visits/jeff-andrews-4/,1336953600,1337299200,2011,,2012,5/14/2012,5/18/2012,5,0,Astro Faculty,0,2 +2194,Jeff Andrews,Columbia University,11/5/2018,,,https://ciera.northwestern.edu/visits/jeff-andrews-5/,1336953600,1337299200,2011,special-astronomy-seminars,2012,5/14/2012,5/18/2012,5,0,Astro Faculty,0,2 +5199,Tamara Rogers,University of Arizona,5/30/2012,,,https://ciera.northwestern.edu/visits/tamara-rogers/,1337040000,1337040000,2012,astrophysics-seminars,2012,5/15/2012,5/15/2012,1,0,Postdoc,0,1 +5198,Margaret Hanson,University of Cincinnati,5/30/2012,,,https://ciera.northwestern.edu/visits/margaret-hanson/,1336435200,1336435200,2012,astrophysics-seminars,2012,5/8/2012,5/8/2012,1,0,Astro Faculty,0,1 +5197,Fred Adams,University of Michigan,5/30/2012,,,https://ciera.northwestern.edu/visits/fred-adams/,1335830400,1335830400,2012,astrophysics-seminars,2012,5/1/2012,5/1/2012,1,0,Astro Faculty,0,1 +2182,Sam Finn,Pennsylvania State University,11/5/2018,,,https://ciera.northwestern.edu/visits/sam-finn/,1335139200,1335484800,2011,astrophysics-seminars,2012,4/23/2012,4/27/2012,5,0,Astro Faculty,0,9 +2183,Tassos Fragos,Harvard-Smithsonian Center for Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/tassos-fragos-4/,1335139200,1335484800,2011,,2012,4/23/2012,4/27/2012,5,0,Astro Faculty,0,9 +2178,Nikta Amiri,Leiden University,11/5/2018,,,https://ciera.northwestern.edu/visits/nikta-amiri/,1335398400,1335398400,2011,special-astronomy-seminars,2012,4/26/2012,4/26/2012,1,1,Astro Faculty,0,1 +2179,Antara Basu-Zych,NASA Goddard Space Flight Center,11/5/2018,,,https://ciera.northwestern.edu/visits/antara-r-basu-zych/,1335139200,1335225600,2011,,2012,4/23/2012,4/24/2012,2,0,Astro Faculty,0,9 +2181,Ann Hornschemeier,NASA Goddard Space Flight Center,11/5/2018,,,https://ciera.northwestern.edu/visits/ann-hornschemeier-cardiff/,1335139200,1335225600,2011,,2012,4/23/2012,4/24/2012,2,0,Postdoc,0,9 +2187,Michael Tremmel,University of Washington,11/5/2018,,,https://ciera.northwestern.edu/visits/michael-tremmel-3/,1335139200,1335225600,2011,,2012,4/23/2012,4/24/2012,2,0,Group Meeting,0,9 +2188,Panayiotis Tzanavaris,Harvard-Smithsonian Center for Astrophysics,11/5/2018,,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris-2/,1335139200,1335225600,2011,,2012,4/23/2012,4/24/2012,2,0,Group Meeting,0,9 +2189,Andreas Zezas,University of Crete,11/5/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-2/,1335139200,1335225600,2011,,2012,4/23/2012,4/24/2012,2,1,Group Meeting,0,9 +2184,Bret Lehmer,Johns Hopkins University,11/5/2018,,,https://ciera.northwestern.edu/visits/bret-lehmer-2/,1335139200,1335139200,2011,,2012,4/23/2012,4/23/2012,1,0,Postdoc,0,9 +2186,Andrew Ptak,NASA Goddard Space Flight Center,11/5/2018,,,https://ciera.northwestern.edu/visits/andrew-ptak/,1335139200,1335139200,2011,,2012,4/23/2012,4/23/2012,1,0,Group Meeting,0,9 +2190,Tyson Littenberg,University of Maryland-College Park,11/5/2018,,,https://ciera.northwestern.edu/visits/tyson-littenberg/,1334707200,1334793600,2011,special-astronomy-seminars,2012,4/18/2012,4/19/2012,2,0,Astro Faculty,0,1 +5196,Philip Marcus,,4/30/2012,,,https://ciera.northwestern.edu/visits/philip-marcus/,1334620800,1334620800,2012,astrophysics-seminars,2012,4/17/2012,4/17/2012,1,1,Astro Faculty,0,1 +2192,Charles Bailyn,Yale University,11/5/2018,,,https://ciera.northwestern.edu/visits/charles-bailyn/,1333929600,1334102400,2011,,2012,4/9/2012,4/11/2012,3,0,Group Meeting,0,1 +2193,Casey Lisse,Johns Hopkins University,11/5/2018,,,https://ciera.northwestern.edu/visits/casey-lisse/,1332979200,1332979200,2011,special-astronomy-seminars,2012,3/29/2012,3/29/2012,1,0,Postdoc,0,1 +5441,Darek Lis,California Institute of Technology,3/19/2012,,,https://ciera.northwestern.edu/visits/darek-lis-2/,1332720000,1332720000,2011,special-astronomy-seminars,2012,3/26/2012,3/26/2012,1,0,Astro Faculty,0,1 +2195,Hannah Jang-Condell,University of Wyoming,11/5/2018,,,https://ciera.northwestern.edu/visits/hannah-jang-condell/,1331769600,1331769600,2011,special-astronomy-seminars,2012,3/15/2012,3/15/2012,1,0,Astro Faculty,0,1 +5163,Cecilia R. Aragon,"University of Washington, Seattle, Washington",3/13/2012,,,https://ciera.northwestern.edu/visits/cecilia-r-aragon/,1331596800,1331596800,2012,interdisciplinary-colloquia|astrophysics-seminars,2012,3/13/2012,3/13/2012,1,0,Postdoc,0,1 +5205,Ranga-Ram Chary,California Institute of Technology,3/30/2012,,,https://ciera.northwestern.edu/visits/ranga-ram-chary/,1330992000,1330992000,2012,astrophysics-seminars,2012,3/6/2012,3/6/2012,1,0,Group Meeting,0,1 +2197,Craig Heinke,University of Alberta,11/7/2018,,,https://ciera.northwestern.edu/visits/craig-heinke/,1330560000,1330560000,2011,astrophysics-seminars|special-astronomy-seminars,2012,3/1/2012,3/1/2012,1,1,Astro Faculty,0,1 +5204,Claire Max,University of Santa Cruz,2/28/2012,,,https://ciera.northwestern.edu/visits/claire-max/,1329177600,1329177600,2012,astrophysics-seminars,2012,2/14/2012,2/14/2012,1,0,Astro Faculty,0,1 +2252,Chris Wegg,California Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/chris-wegg/,1328745600,1328745600,2011,special-astronomy-seminars,2012,2/9/2012,2/9/2012,1,0,Group Meeting,0,2 +2253,Ben Lackey,University of Wisconsin-Milwaukee,11/7/2018,,,https://ciera.northwestern.edu/visits/ben-lackey/,1328745600,1328745600,2011,special-astronomy-seminars,2012,2/9/2012,2/9/2012,1,1,Group Meeting,0,2 +5203,Ted von Hippel,Embry-Riddle Aeronautical University,2/28/2012,,,https://ciera.northwestern.edu/visits/ted-von-hippel/,1328572800,1328572800,2012,astrophysics-seminars,2012,2/7/2012,2/7/2012,1,0,Group Meeting,0,1 +2254,Kristen Menou,Columbia University,11/7/2018,,,https://ciera.northwestern.edu/visits/kristen-menou/,1327536000,1327622400,2011,special-astronomy-seminars,2012,1/26/2012,1/27/2012,2,0,Group Meeting,0,2 +2255,Diana Valencia,Massachusetts Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/diana-valencia/,1327536000,1327622400,2011,special-astronomy-seminars,2012,1/26/2012,1/27/2012,2,0,Group Meeting,0,2 +2257,Junfeng Wang,Harvard-Smithsonian Center for Astrophysics,11/7/2018,,,https://ciera.northwestern.edu/visits/junfeng-wang-2/,1326758400,1326844800,2011,special-astronomy-seminars,2012,1/17/2012,1/18/2012,2,0,Postdoc,0,2 +5202,Thiem Hoang,University of Wisconsin- Madison,1/30/2012,,,https://ciera.northwestern.edu/visits/thiem-hoang/,1326758400,1326758400,2012,astrophysics-seminars,2012,1/17/2012,1/17/2012,1,1,Astro Faculty,0,2 +5215,Brad Cenko,"University of California, Berkeley",12/30/2011,,,https://ciera.northwestern.edu/visits/brad-cenko-2/,1323129600,1323129600,2012,astrophysics-seminars,2012,12/6/2011,12/6/2011,1,0,NA,1,1 +2258,Eva Ntormousi,MPE / Munich University Observatory,11/7/2018,,,https://ciera.northwestern.edu/visits/eva-ntormousi/,1322524800,1322611200,2011,special-astronomy-seminars,2012,11/29/2011,11/30/2011,2,1,Group Meeting,0,2 +5214,Matt Hedman,Cornell University,11/30/2011,,,https://ciera.northwestern.edu/visits/matt-hedman/,1322524800,1322524800,2012,astrophysics-seminars,2012,11/29/2011,11/29/2011,1,0,Postdoc,0,2 +2259,Adrienne Cool,San Francisco State University,11/7/2018,,,https://ciera.northwestern.edu/visits/adrienne-cool/,1321833600,1321920000,2011,special-astronomy-seminars,2012,11/21/2011,11/22/2011,2,0,Postdoc,0,1 +5213,Julie McEnery,NASA Goddard Space Flight Center,11/30/2011,,,https://ciera.northwestern.edu/visits/julie-mcenery/,1321920000,1321920000,2012,astrophysics-seminars,2012,11/22/2011,11/22/2011,1,0,Postdoc,0,1 +2260,Ann-Marie Madigan,Universiteit Leiden,11/7/2018,,,https://ciera.northwestern.edu/visits/ann-marie-madigan/,1321488000,1321574400,2011,special-astronomy-seminars,2012,11/17/2011,11/18/2011,2,1,Astro Faculty,0,1 +2261,Rich Plotkin,University of Amsterdam,11/7/2018,,,https://ciera.northwestern.edu/visits/rich-plotkin/,1321228800,1321315200,2011,special-astronomy-seminars,2012,11/14/2011,11/15/2011,2,1,Postdoc,0,1 +5212,Ian Dobbs-Dixon,University of Washington,11/30/2011,,,https://ciera.northwestern.edu/visits/ian-dobbs-dixon/,1321315200,1321315200,2012,astrophysics-seminars,2012,11/15/2011,11/15/2011,1,0,Astro Faculty,0,1 +5211,Matija Cuk,Harvard University,11/30/2011,,,https://ciera.northwestern.edu/visits/matija-cuk-2/,1320710400,1320710400,2012,astrophysics-seminars,2012,11/8/2011,11/8/2011,1,0,Group Meeting,0,1 +2262,Manjari Bagchi,West Virginia University,11/7/2018,,,https://ciera.northwestern.edu/visits/manjari-bagchi/,1320105600,1320364800,2011,special-astronomy-seminars,2012,11/1/2011,11/4/2011,4,0,Postdoc,0,2 +5210,Bob Kirshner,Harvard-Smithsonian Center for Astrophysics,11/30/2011,,,https://ciera.northwestern.edu/visits/bob-kirshner/,1320105600,1320105600,2012,astrophysics-seminars|ciera-annual-public-lectures,2012,11/1/2011,11/1/2011,1,0,Astro Faculty,0,2 +2263,Phillip Zukin,Massachusetts Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/phillip-zukin/,1319760000,1319760000,2011,special-astronomy-seminars,2012,10/28/2011,10/28/2011,1,0,Group Meeting,0,1 +2264,Snezana Prodan,University of Toronto,11/7/2018,,,https://ciera.northwestern.edu/visits/snezana-prodan/,1319587200,1319673600,2011,special-astronomy-seminars,2012,10/26/2011,10/27/2011,2,1,Other Faculty,1,1 +5209,Nick Moeckel,University of Cambridge,10/30/2011,,,https://ciera.northwestern.edu/visits/nick-moeckel/,1319500800,1319500800,2012,astrophysics-seminars,2012,10/25/2011,10/25/2011,1,1,Postdoc,0,1 +5164,Dr. Ray Jayawardhana,University of Toronto,10/18/2011,,,https://ciera.northwestern.edu/visits/dr-ray-jayawardhana/,1318896000,1318896000,2012,interdisciplinary-colloquia|astrophysics-seminars,2012,10/18/2011,10/18/2011,1,1,Postdoc,0,1 +2265,Mitchell C. Begelman,"University of Colorado, Boulder",11/7/2018,,,https://ciera.northwestern.edu/visits/mitchell-c-begelman/,1318291200,1318377600,2011,astrophysics-seminars|special-astronomy-seminars,2012,10/11/2011,10/12/2011,2,0,Astro Faculty,0,1 +2266,Selma De Mink,Space Telescope Science Institute,11/7/2018,,,https://ciera.northwestern.edu/visits/selma-de-mink/,1317859200,1317859200,2011,,2012,10/6/2011,10/6/2011,1,0,Astro Faculty,0,2 +2267,Susmita Chakravorty,Harvard-Smithsonian Center for Astrophysics,11/7/2018,,,https://ciera.northwestern.edu/visits/susmita-chakravorty/,1317859200,1317859200,2011,special-astronomy-seminars,2012,10/6/2011,10/6/2011,1,0,Astro Faculty,0,2 +5208,Cornelia Lang,University of Iowa,10/30/2011,,,https://ciera.northwestern.edu/visits/cornelia-lang/,1317686400,1317686400,2012,astrophysics-seminars,2012,10/4/2011,10/4/2011,1,0,Astro Faculty,0,1 +5207,Eliot Quataert,"University of California, Berkeley",9/30/2011,,,https://ciera.northwestern.edu/visits/eliot-quataert-4/,1317081600,1317081600,2012,astrophysics-seminars,2012,9/27/2011,9/27/2011,1,0,Astro Faculty,0,1 +5206,Dan Hooper,Fermi National Accelerator Laboratory,9/30/2011,,,https://ciera.northwestern.edu/visits/dan-hooper/,1316476800,1316476800,2012,astrophysics-seminars,2012,9/20/2011,9/20/2011,1,0,Group Meeting,0,1 +2268,Dave Latham,Harvard-Smithsonian Center for Astrophysics,11/7/2018,,,https://ciera.northwestern.edu/visits/dave-latham/,1314662400,1314662400,2010,,2011,8/30/2011,8/30/2011,1,0,Group Meeting,1,1 +2269,Kenza Arraki,New Mexico State University,11/7/2018,,,https://ciera.northwestern.edu/visits/kenza-arraki-2/,1310342400,1311120000,2010,,2011,7/11/2011,7/20/2011,10,0,Postdoc,1,1 +2271,Ann Hornschemeier,NASA Goddard Space Flight Center,11/7/2018,,,https://ciera.northwestern.edu/visits/ann-hornschemeier-2/,1309996800,1310083200,2010,,2011,7/7/2011,7/8/2011,2,0,Astro Faculty,1,2 +2272,Nate Bode,California Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/nate-bode/,1309996800,1310083200,2010,,2011,7/7/2011,7/8/2011,2,0,Astro Faculty,0,2 +2275,Tassos Fragos,Harvard-Smithsonian Center for Astrophysics,11/7/2018,,,https://ciera.northwestern.edu/visits/tassos-fragos-5/,1306972800,1307491200,2010,,2011,6/2/2011,6/8/2011,7,0,Postdoc,0,2 +2273,Boaz Katz,Institute for Advanced Study,11/7/2018,,,https://ciera.northwestern.edu/visits/boaz-katz/,1307318400,1307404800,2010,astrophysics-seminars,2011,6/6/2011,6/7/2011,2,0,Astro Faculty,0,2 +2274,Anna Lisa Varri,Universit� degli Studi di Milano ,11/7/2018,,,https://ciera.northwestern.edu/visits/anna-lisa-varri/,1307318400,1307318400,2010,,2011,6/6/2011,6/6/2011,1,1,Postdoc,0,2 +2276,Duncan Forgan,University of Edinburgh,11/7/2018,,,https://ciera.northwestern.edu/visits/duncan-forgan/,1306972800,1306972800,2010,special-astronomy-seminars,2011,6/2/2011,6/2/2011,1,1,Astro Faculty,0,2 +2277,Keren Sharon,University of Chicago,11/7/2018,,,https://ciera.northwestern.edu/visits/keren-sharon/,1306368000,1306368000,2010,special-astronomy-seminars,2011,5/26/2011,5/26/2011,1,0,Astro Faculty,0,1 +5221,Ellen Zweibel,University of Wisconsin,5/30/2011,,,https://ciera.northwestern.edu/visits/ellen-zweibel/,1306195200,1306195200,2011,astrophysics-seminars,2011,5/24/2011,5/24/2011,1,0,Astro Faculty,0,1 +2278,Jim Kasting,Pennsylvania State University,11/7/2018,,,https://ciera.northwestern.edu/visits/jim-kasting/,1305504000,1305590400,2010,interdisciplinary-colloquia|astrophysics-seminars,2011,5/16/2011,5/17/2011,2,0,Postdoc,0,1 +5220,Dong Lai,Cornell University,5/30/2011,,,https://ciera.northwestern.edu/visits/dong-lai/,1304985600,1304985600,2011,astrophysics-seminars,2011,5/10/2011,5/10/2011,1,0,Postdoc,0,1 +5219,Takeshi Oka,University of Chicago,5/30/2011,,,https://ciera.northwestern.edu/visits/takeshi-oka/,1304380800,1304380800,2010,astrophysics-seminars,2011,5/3/2011,5/3/2011,1,0,Postdoc,0,1 +2281,Ilya Mandel,Massachusetts Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/ilya-mandel/,1303776000,1304035200,2010,,2011,4/26/2011,4/29/2011,4,0,Group Meeting,0,1 +2282,Nico Yunes,Massachusetts Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/nico-yunes/,1303689600,1303862400,2010,astrophysics-seminars,2011,4/25/2011,4/27/2011,3,0,Group Meeting,0,1 +2280,Laura Blecha,Harvard-Smithsonian Center for Astrophysics,11/7/2018,,,https://ciera.northwestern.edu/visits/laura-blecha/,1303862400,1303862400,2010,special-astronomy-seminars,2011,4/27/2011,4/27/2011,1,0,Group Meeting,0,1 +5218,David Kaplan,University of Wisconsin - Milwaukee,4/30/2011,,,https://ciera.northwestern.edu/visits/david-kaplan-2/,1303171200,1303171200,2011,astrophysics-seminars,2011,4/19/2011,4/19/2011,1,1,Group Meeting,0,1 +5216,Elizabeth Blanton,Boston University,4/30/2011,,,https://ciera.northwestern.edu/visits/elizabeth-blanton/,1302566400,1302566400,2011,astrophysics-seminars,2011,4/12/2011,4/12/2011,1,0,Group Meeting,0,1 +2283,Marcel Agueros,Columbia University,11/7/2018,,,https://ciera.northwestern.edu/visits/marcel-agueros/,1301356800,1301356800,2010,astrophysics-seminars,2011,3/29/2011,3/29/2011,1,0,Group Meeting,0,1 +2285,Hee-Suk,,11/7/2018,,,https://ciera.northwestern.edu/visits/hee-suk/,1298851200,1299801600,2010,,2011,2/28/2011,3/11/2011,12,1,Group Meeting,0,1 +2284,Ed Seidel,Louisiana State University,11/7/2018,,,https://ciera.northwestern.edu/visits/ed-seidel-2/,1299715200,1299801600,2010,interdisciplinary-colloquia|astrophysics-seminars,2011,3/10/2011,3/11/2011,2,0,Group Meeting,0,1 +5231,Nathan Kaib,Queens University,3/2/2011,,,https://ciera.northwestern.edu/visits/nathan-kaib/,1299542400,1299542400,2011,astrophysics-seminars,2011,3/8/2011,3/8/2011,1,0,Group Meeting,0,1 +5230,Todd Thompson,Ohio State University,3/2/2011,,,https://ciera.northwestern.edu/visits/todd-thompson-2/,1298937600,1298937600,2011,astrophysics-seminars,2011,3/1/2011,3/1/2011,1,0,Group Meeting,0,1 +5229,Marco Fatuzzo,Xavier College,2/2/2020,,,https://ciera.northwestern.edu/visits/marco-fatuzzo/,1298332800,1298332800,2011,astrophysics-seminars,2011,2/22/2011,2/22/2011,1,0,Postdoc,0,1 +5228,Eric Herbst,Ohio State University,2/2/2011,,,https://ciera.northwestern.edu/visits/eric-herbst/,1297728000,1297728000,2011,astrophysics-seminars,2011,2/15/2011,2/15/2011,1,0,Group Meeting,0,1 +2286,Ann Hornschemeier,NASA Goddard Space Flight Center,11/7/2018,,,https://ciera.northwestern.edu/visits/ann-hornschemeier-3/,1296432000,1297382400,2010,,2011,1/31/2011,2/11/2011,12,0,Astro Faculty,0,7 +5442,Elizabeth Hicks,University of Chicago,2/19/2011,,,https://ciera.northwestern.edu/visits/elizabeth-hicks/,1297382400,1297382400,2011,special-astronomy-seminars,2011,2/11/2011,2/11/2011,1,0,Astro Faculty,0,1 +5227,Tom Dame,Harvard-Smithsonian Center for Astrophysics,2/2/2020,,,https://ciera.northwestern.edu/visits/tom-dame/,1297123200,1297123200,2011,astrophysics-seminars,2011,2/8/2011,2/8/2011,1,0,Astro Faculty,0,2 +5443,Tom Dame,Harvard-Smithsonian Center for Astrophysics,2/19/2011,,,https://ciera.northwestern.edu/visits/thomas-dame/,1297123200,1297123200,2010,special-astronomy-seminars,2011,2/8/2011,2/8/2011,1,0,Grad Student,1,2 +2289,Andreas Zezas,University of Crete,11/7/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-3/,1296432000,1296691200,2010,,2011,1/31/2011,2/3/2011,4,1,Postdoc,0,7 +2287,Nate Bode,California Institute of Technology,11/7/2018,,,https://ciera.northwestern.edu/visits/nate-bode-2/,1296604800,1296691200,2010,,2011,2/2/2011,2/3/2011,2,0,Grad Student,0,2 +2288,Vallia Antoniou,,11/7/2018,,,https://ciera.northwestern.edu/visits/vallia-antoniou/,1296604800,1296691200,2010,,2011,2/2/2011,2/3/2011,2,1,Astro Faculty,0,2 +2290,Tassos Fragos,Harvard-Smithsonian Center for Astrophysics,11/7/2018,Group Visit,,https://ciera.northwestern.edu/visits/tassos-fragos-6/,1296432000,1296518400,2010,,2011,1/31/2011,2/1/2011,2,0,Postdoc,0,7 +2291,Leigh Jenkins,,11/7/2018,Group Visit,,https://ciera.northwestern.edu/visits/leigh-jenkins/,1296432000,1296518400,2010,,2011,1/31/2011,2/1/2011,2,1,Astro Faculty,0,7 +2292,Bret Lehmer,Johns Hopkins University,11/7/2018,Group Visit,,https://ciera.northwestern.edu/visits/bret-lehmer-3/,1296432000,1296518400,2010,astrophysics-seminars,2011,1/31/2011,2/1/2011,2,0,Grad Student,0,7 +2293,Panayiotis Tzanavaris,Harvard-Smithsonian Center for Astrophysics,11/7/2018,Group Visit,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris-3/,1296432000,1296518400,2010,,2011,1/31/2011,2/1/2011,2,0,Astro Faculty,0,7 +2294,Andrew Ptak,NASA Goddard Space Flight Center,11/7/2018,Group Visit,,https://ciera.northwestern.edu/visits/andrew-ptak-2/,1296432000,1296518400,2010,,2011,1/31/2011,2/1/2011,2,0,Postdoc,0,7 +2295,Nikolaos Fanidakis,"Durham University, UK",11/7/2018,,,https://ciera.northwestern.edu/visits/nikolaos-fanidakis/,1296000000,1296000000,2010,,2011,1/26/2011,1/26/2011,1,1,Astro Faculty,0,1 +5226,Jonathan Mitchell,UCLA,1/2/2011,,,https://ciera.northwestern.edu/visits/jonathan-mitchell/,1295913600,1295913600,2011,astrophysics-seminars,2011,1/25/2011,1/25/2011,1,0,Postdoc,0,1 +2296,Steve Eikenberry,University of Florida,11/7/2018,,,https://ciera.northwestern.edu/visits/steve-eikenberry/,1295481600,1295568000,2010,,2011,1/20/2011,1/21/2011,2,0,Postdoc,0,1 +5225,Doug Clowe,Ohio University,1/2/2011,,,https://ciera.northwestern.edu/visits/doug-clowe/,1295308800,1295308800,2011,astrophysics-seminars,2011,1/18/2011,1/18/2011,1,0,Astro Faculty,0,1 +2297,Phil Chang,CITA,11/7/2018,,,https://ciera.northwestern.edu/visits/phil-chang/,1294963200,1294963200,2010,astrophysics-seminars,2011,1/14/2011,1/14/2011,1,1,Astro Faculty,0,1 +5244,Martin Elvis,Harvard-Smithsonian Center for Astrophysics,11/2/2010,,,https://ciera.northwestern.edu/visits/martin-elvis/,1292284800,1292284800,2011,astrophysics-seminars,2011,12/14/2010,12/14/2010,1,0,Astro Faculty,0,1 +5243,Daniel Fabrycky,UC Santa Cruz,12/2/2010,,,https://ciera.northwestern.edu/visits/daniel-fabrycky-3/,1291680000,1291680000,2011,astrophysics-seminars,2011,12/7/2010,12/7/2010,1,0,Astro Faculty,0,1 +5242,Robyn Sanderson,Massachusetts Institute of Technology,11/2/2010,,,https://ciera.northwestern.edu/visits/robyn-sanderson-2/,1291075200,1291075200,2011,astrophysics-seminars,2011,11/30/2010,11/30/2010,1,0,Astro Faculty,0,1 +5241,Emily Rauscher,University of Arizona,11/2/2010,,,https://ciera.northwestern.edu/visits/emily-rauscher/,1290470400,1290470400,2011,astrophysics-seminars,2011,11/23/2010,11/23/2010,1,0,Postdoc,0,1 +5240,Paul Martini,Ohio State University,11/2/2010,,,https://ciera.northwestern.edu/visits/paul-martini/,1289865600,1289865600,2011,astrophysics-seminars,2011,11/16/2010,11/16/2010,1,0,Postdoc,0,1 +5239,Elena Pierpaoli,USC,11/2/2010,,,https://ciera.northwestern.edu/visits/elena-pierpaoli/,1289260800,1289343600,2011,astrophysics-seminars,2011,11/9/2010,11/9/2010,1.958333333,0,Astro Faculty,0,1 +5238,Steve Kawaler,Iowa State University,11/2/2010,,,https://ciera.northwestern.edu/visits/steve-kawaler/,1288656000,1288656000,2011,astrophysics-seminars,2011,11/2/2010,11/2/2010,1,0,Astro Faculty,0,1 +5237,Luis Ho,Carnegie Observatories,10/2/2010,,,https://ciera.northwestern.edu/visits/luis-ho/,1288051200,1288051200,2011,astrophysics-seminars,2011,10/26/2010,10/26/2010,1,0,Astro Faculty,0,1 +5236,Kip Thorne,California Institute of Technology,10/2/2010,,,https://ciera.northwestern.edu/visits/kip-thorne/,1287360000,1287360000,2011,astrophysics-seminars|ciera-annual-public-lectures,2011,10/18/2010,10/18/2010,1,0,Grad Student,0,1 +5235,Marusa Bradac,"University of California, Davis",10/2/2010,,,https://ciera.northwestern.edu/visits/marusa-bradac/,1286841600,1286841600,2011,astrophysics-seminars,2011,10/12/2010,10/12/2010,1,0,Astro Faculty,0,1 +5234,Peter Goldreich,California Institute of Technology,10/2/2010,,,https://ciera.northwestern.edu/visits/peter-goldreich-2/,1286236800,1286236800,2011,astrophysics-seminars,2011,10/5/2010,10/5/2010,1,0,Astro Faculty,0,1 +5232,Moshe Elitzur,University of Kentucky,9/2/2010,,,https://ciera.northwestern.edu/visits/moshe-elitzur/,1285027200,1285632000,2011,astrophysics-seminars,2011,9/21/2010,9/28/2010,8,0,Other Faculty,1,1 +5233,Chris Howk,University of Notre Dame,9/2/2010,,,https://ciera.northwestern.edu/visits/chris-howk/,1285632000,1285632000,2011,astrophysics-seminars,2011,9/28/2010,9/28/2010,1,0,Postdoc,0,1 +2685,Andrea Prestwich,Harvard-Smithsonian Center for Astrophysics,11/24/2018,,,https://ciera.northwestern.edu/visits/andrea-prestwich/,1277942400,1283212800,2009,,2010,7/1/2010,8/31/2010,62,0,Astro Faculty,1,2 +2686,Steve Saar,Harvard-Smithsonian Center for Astrophysics,11/24/2018,,,https://ciera.northwestern.edu/visits/steve-saar/,1277942400,1283212800,2009,,2010,7/1/2010,8/31/2010,62,0,Astro Faculty,0,2 +2683,Marc Van Der Sluys,University of Alberta,11/24/2018,,,https://ciera.northwestern.edu/visits/marc-van-der-sluys/,1280188800,1280880000,2009,,2010,7/27/2010,8/4/2010,9,1,Astro Faculty,0,1 +2707,Loic Guennou,Astronomy Observatory of Marseilles Provence,11/25/2018,,,https://ciera.northwestern.edu/visits/loic-guennou/,1267401600,1280534400,2009,,2010,3/1/2010,7/31/2010,153,1,,1,3 +2701,Jean Teyssandier,University of Paris-Sud 11,11/25/2018,,,https://ciera.northwestern.edu/visits/jean-teyssandier/,1272240000,1280534400,2009,,2010,4/26/2010,7/31/2010,97,1,,1,2 +2684,Tom Linden,"University of California, Santa Barbara",11/24/2018,,,https://ciera.northwestern.edu/visits/tom-linden/,1279584000,1279929600,2009,,2010,7/20/2010,7/24/2010,5,0,Postdoc,1,1 +2687,Roger Hildebrand,University of Chicago,11/24/2018,,,https://ciera.northwestern.edu/visits/roger-hildebrand/,1276473600,1276473600,2009,,2010,6/14/2010,6/14/2010,1,0,Astro Faculty,0,1 +2688,Enrico Ramirez-Ruiz,"University of California, Santa Cruz",11/24/2018,,,https://ciera.northwestern.edu/visits/enrico-ramirez-ruiz/,1276041600,1276300800,2009,,2010,6/9/2010,6/12/2010,4,0,Grad Student,1,5 +2689,Jill Naiman,"University of California, Santa Cruz",11/24/2018,,,https://ciera.northwestern.edu/visits/jill-naiman/,1276041600,1276300800,2009,,2010,6/9/2010,6/12/2010,4,0,Postdoc,0,5 +2690,James Guillochon,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/james-guillochon-2/,1276041600,1276300800,2009,special-astronomy-seminars,2010,6/9/2010,6/12/2010,4,0,Grad Student,0,5 +2691,Rachel Strickler,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/rachel-strickler/,1276041600,1276300800,2009,,2010,6/9/2010,6/12/2010,4,0,Astro Faculty,0,5 +2692,Fabio De Colle,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/fabio-de-colle/,1276041600,1276300800,2009,,2010,6/9/2010,6/12/2010,4,0,Astro Faculty,0,5 +2700,Hyosun Kim,Academia Sinica Institute of Astronomy and Astrophysics,11/25/2018,,,https://ciera.northwestern.edu/visits/hyosun-kim/,1272672000,1275609600,2009,,2010,5/1/2010,6/4/2010,35,1,,1,1 +5250,Vikram Dawrkadasl,University of Chicago,6/2/2010,,,https://ciera.northwestern.edu/visits/vikram-dawrkadasl/,1275350400,1275350400,2009,astrophysics-seminars,2010,6/1/2010,6/1/2010,1,0,Postdoc,0,1 +2693,Enrico Ramirez-Ruiz,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/enrico-ramirez-ruiz-2/,1274572800,1275264000,2009,,2010,5/23/2010,5/31/2010,9,0,Astro Faculty,0,1 +2695,Hagai Perets,Harvard-Smithsonian Center for Astrophysics,11/25/2018,,,https://ciera.northwestern.edu/visits/hagai-perets-2/,1274140800,1274400000,2009,astrophysics-seminars,2010,5/18/2010,5/21/2010,4,0,Postdoc,0,1 +2694,Charles Bailyn,Yale University,11/25/2018,,,https://ciera.northwestern.edu/visits/charles-bailyn-2/,1274313600,1274400000,2009,special-astronomy-seminars,2010,5/20/2010,5/21/2010,2,0,Astro Faculty,0,1 +2696,Bret Lehmer,NASA Goddard Space Flight Center,11/25/2018,,,https://ciera.northwestern.edu/visits/bret-lehmer-4/,1273622400,1273795200,2009,,2010,5/12/2010,5/14/2010,3,0,,1,2 +2697,Panayiotis Tzanavaris,NASA Goddard Space Flight Center ,11/25/2018,,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris-4/,1273622400,1273795200,2009,special-astronomy-seminars,2010,5/12/2010,5/14/2010,3,0,,1,2 +5248,Fabian Heitsch,University of North Carolina,5/2/2010,,,https://ciera.northwestern.edu/visits/fabian-heitsch/,1273536000,1273536000,2009,astrophysics-seminars,2010,5/11/2010,5/11/2010,1,0,,1,1 +2698,Marta Volonteri,University of Michigan,11/25/2018,,,https://ciera.northwestern.edu/visits/marta-volonteri/,1273104000,1273190400,2009,special-astronomy-seminars,2010,5/6/2010,5/7/2010,2,0,,1,1 +2699,Andy Fruchter,STScl,11/25/2018,,,https://ciera.northwestern.edu/visits/andy-fruchter/,1272931200,1273017600,2009,astrophysics-seminars,2010,5/4/2010,5/5/2010,2,0,,1,1 +2702,Elena Rasia,University of Michigan,11/25/2018,,,https://ciera.northwestern.edu/visits/elena-rasia/,1272240000,1272326400,2009,astrophysics-seminars,2010,4/26/2010,4/27/2010,2,0,,1,2 +2704,Jeff Andrews,Columbia University,11/25/2018,,,https://ciera.northwestern.edu/visits/jeff-andrews-6/,1271894400,1272153600,2009,,2010,4/22/2010,4/25/2010,4,0,,1,1 +2703,David Reitze,University of Florida,11/25/2018,,,https://ciera.northwestern.edu/visits/david-reitze/,1271980800,1271980800,2009,,2010,4/23/2010,4/23/2010,1,0,,1,1 +5247,Dawn Erb,UCSB,4/2/2010,,,https://ciera.northwestern.edu/visits/dawn-erb-2/,1271721600,1271721600,2009,astrophysics-seminars,2010,4/20/2010,4/20/2010,1,0,,1,1 +2705,Elena D'Onghia,Harvard-Smithsonian Center for Astrophysics,11/25/2018,,,https://ciera.northwestern.edu/visits/elena-donghia/,1271116800,1271203200,2009,astrophysics-seminars,2010,4/13/2010,4/14/2010,2,0,,1,1 +5460,Lingzhen Zeng,Johns Hopkins University,4/21/2010,,,https://ciera.northwestern.edu/visits/lingzhen-zeng/,1271203200,1271203200,2009,special-astronomy-seminars,2010,4/14/2010,4/14/2010,1,0,,1,1 +5246,Sebastian Heinz,"University of Wisconsin, Madison",4/2/2010,,,https://ciera.northwestern.edu/visits/sebastian-heinz/,1270512000,1270512000,2010,astrophysics-seminars,2010,4/6/2010,4/6/2010,1,0,,1,1 +5245,Luis Reyes,University of Chicago,3/2/2010,,,https://ciera.northwestern.edu/visits/luis-reyes/,1269907200,1269907200,2010,astrophysics-seminars,2010,3/30/2010,3/30/2010,1,0,,1,1 +2708,Ravikumar Kopparapu,Pennsylvania State University,11/25/2018,,,https://ciera.northwestern.edu/visits/ravikumar-kopparapu/,1267401600,1267660800,2009,special-astronomy-seminars,2010,3/1/2010,3/4/2010,4,0,,1,3 +2706,Jay Strader,Harvard-Smithsonian Center for Astrophysics,11/25/2018,,,https://ciera.northwestern.edu/visits/jay-strader-3/,1267401600,1267574400,2009,astrophysics-seminars,2010,3/1/2010,3/3/2010,3,0,,1,3 +2709,Sambaran Banerjee,University of Bonn,11/25/2018,,,https://ciera.northwestern.edu/visits/sambaran-banerjee/,1266796800,1266969600,2009,special-astronomy-seminars,2010,2/22/2010,2/24/2010,3,1,,1,1 +5254,C. Barth Netterfield,University of Toronto,2/2/2010,,,https://ciera.northwestern.edu/visits/c-barth-netterfield/,1266883200,1266883200,2009,astrophysics-seminars,2010,2/23/2010,2/23/2010,1,1,,1,1 +2710,Daryl Haggard,University of Washington,11/25/2018,,,https://ciera.northwestern.edu/visits/daryl-haggard/,1265414400,1265673600,2009,,2010,2/6/2010,2/9/2010,4,0,,1,2 +2711,Nick Cowan,University of Washington,11/25/2018,,,https://ciera.northwestern.edu/visits/nick-cowan-2/,1265414400,1265673600,2009,,2010,2/6/2010,2/9/2010,4,0,,1,2 +5253,Charles Gammie,"University of Illinois, Urbana-Champaign",2/2/2010,,,https://ciera.northwestern.edu/visits/charles-gammie/,1265673600,1265673600,2009,astrophysics-seminars,2010,2/9/2010,2/9/2010,1,0,,1,1 +2712,Geoffrey Marcy,"University of California, Berkeley",11/25/2018,,,https://ciera.northwestern.edu/visits/geoffrey-marcy/,1265241600,1265328000,2009,,2010,2/4/2010,2/5/2010,2,0,,1,1 +2713,B�lent Kiziltan,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/bulent-kiziltan/,1264982400,1265068800,2009,astrophysics-seminars|special-astronomy-seminars,2010,2/1/2010,2/2/2010,2,0,Postdoc,0,1 +5252,Qizhou Zhang,Harvard Smithsonian Center for Astrophysics,1/2/2010,,,https://ciera.northwestern.edu/visits/qizhou-zhang/,1264464000,1264464000,2009,astrophysics-seminars,2010,1/26/2010,1/26/2010,1,1,Astro Faculty,0,1 +2715,Eugene Chiang,"University of California, Berkeley",11/25/2018,,,https://ciera.northwestern.edu/visits/eugene-chiang/,1263513600,1263945600,2009,astrophysics-seminars,2010,1/15/2010,1/20/2010,6,0,,1,1 +2714,Enrico Ramirez-Ruiz,"University of California, Santa Cruz",11/25/2018,,,https://ciera.northwestern.edu/visits/enrico-ramirez-ruiz-3/,1263772800,1263859200,2009,special-astronomy-seminars,2010,1/18/2010,1/19/2010,2,0,Postdoc,0,1 +2727,Peter Anders,Astronomical Institute Utrecht,11/26/2018,,,https://ciera.northwestern.edu/visits/peter-anders/,1262995200,1263600000,2009,special-astronomy-seminars,2010,1/9/2010,1/16/2010,8,1,Astro Faculty,0,1 +2716,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,11/25/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-4/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Group Meeting,1,6 +2718,Andrew Ptak,Johns Hopkins University,11/25/2018,,,https://ciera.northwestern.edu/visits/andy-ptak/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Group Meeting,0,6 +2719,Bret Lehmer,Johns Hopkins University,11/25/2018,,,https://ciera.northwestern.edu/visits/bret-lehmer-5/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Group Meeting,0,6 +2723,Panayiotis Tzanavaris,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris-5/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Postdoc,0,6 +2724,Leigh Jenkins,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/leigh-jenkins-2/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Astro Faculty,0,6 +2725,Ann Hornschemeier,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/ann-hornschemeier-4/,1263427200,1263513600,2009,,2010,1/14/2010,1/15/2010,2,0,Astro Faculty,0,6 +2726,Aaron Geller,University of Wisconsin - Madison,11/26/2018,,,https://ciera.northwestern.edu/visits/aaron-geller/,1263168000,1263254400,2009,special-astronomy-seminars,2010,1/11/2010,1/12/2010,2,0,Astro Faculty,0,1 +5251,Ben Koester,University of Chicago,1/2/2010,,,https://ciera.northwestern.edu/visits/ben-koester/,1263254400,1263254400,2009,astrophysics-seminars,2010,1/12/2010,1/12/2010,1,0,Astro Faculty,0,1 +2728,Jeff Andrews,Columbia University,11/26/2018,,,https://ciera.northwestern.edu/visits/jeff-andrews-7/,1262563200,1262908800,2009,,2010,1/4/2010,1/8/2010,5,0,Group Meeting,0,2 +2729,Tim Linden,"University of California, Santa Barbara",11/26/2018,,,https://ciera.northwestern.edu/visits/tim-linden-2/,1262563200,1262563200,2009,,2010,1/4/2010,1/4/2010,1,0,Group Meeting,0,2 +5264,Zhi-Yun Li,University of Virginia,12/5/2009,,,https://ciera.northwestern.edu/visits/zhi-yun-li/,1260230400,1260230400,2009,astrophysics-seminars,2010,12/8/2009,12/8/2009,1,0,Astro Faculty,0,1 +2730,Ron Webbink,"University of Illinois, Urbana-Champaign",11/26/2018,,,https://ciera.northwestern.edu/visits/ron-webbink/,1259798400,1259884800,2009,,2010,12/3/2009,12/4/2009,2,0,Postdoc,0,1 +2731,Alessia Gualandris,Max-Planck Institute for Astrophysics,11/26/2018,,,https://ciera.northwestern.edu/visits/alessia-gualandris/,1259452800,1259798400,2009,astrophysics-seminars,2010,11/29/2009,12/3/2009,5,1,Postdoc,0,1 +5263,Steinn Sigurdsson,Pennsylvania State University,11/5/2009,,,https://ciera.northwestern.edu/visits/steinn-sigurdsson-3/,1259020800,1259020800,2009,astrophysics-seminars,2010,11/24/2009,11/24/2009,1,0,Astro Faculty,0,1 +5262,Volker Bromm,"University of Texas, Austin",11/5/2009,,,https://ciera.northwestern.edu/visits/volker-bromm/,1258416000,1258416000,2009,astrophysics-seminars,2010,11/17/2009,11/17/2009,1,0,Astro Faculty,0,1 +2736,Ann Hornschemeier,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/ann-hornschemeier-5/,1257897600,1258070400,2009,special-astronomy-seminars,2010,11/11/2009,11/13/2009,3,0,Postdoc,0,1 +2732,Bret Lehmer,Johns Hopkins University,11/26/2018,,,https://ciera.northwestern.edu/visits/bret-lehmer-6/,1257984000,1258070400,2009,,2010,11/12/2009,11/13/2009,2,0,Astro Faculty,0,3 +2733,Panayiotis Tzanavaris,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/panayiotis-tzanavaris-6/,1257984000,1258070400,2009,,2010,11/12/2009,11/13/2009,2,0,Postdoc,0,3 +2734,Leigh Jenkins,NASA Goddard Space Flight Center,11/26/2018,,,https://ciera.northwestern.edu/visits/leigh-jenkins-3/,1257984000,1258070400,2009,,2010,11/12/2009,11/13/2009,2,0,Postdoc,0,3 +2737,Scott Gaudi,Ohio State University,11/26/2018,,,https://ciera.northwestern.edu/visits/scott-gaudi/,1257811200,1257897600,2009,astrophysics-seminars,2010,11/10/2009,11/11/2009,2,0,Astro Faculty,0,1 +2738,Soko Matsumura,University of Maryland,11/26/2018,,,https://ciera.northwestern.edu/visits/soko-matsumura/,1257379200,1257552000,2009,,2010,11/5/2009,11/7/2009,3,0,Astro Faculty,0,2 +2739,Josh Winn,Massachusetts Institute of Technology,11/26/2018,,,https://ciera.northwestern.edu/visits/josh-winn/,1257379200,1257465600,2009,,2010,11/5/2009,11/6/2009,2,0,Astro Faculty,0,2 +5261,Bruce Balick,University of Washington,11/5/2009,,,https://ciera.northwestern.edu/visits/bruce-balick/,1257206400,1257206400,2009,astrophysics-seminars,2010,11/3/2009,11/3/2009,1,0,Astro Faculty,0,1 +2741,Tim Linden,"University of California, Santa Barbara",11/26/2018,,,https://ciera.northwestern.edu/visits/tim-linden-3/,1254787200,1255046400,2009,special-astronomy-seminars,2010,10/6/2009,10/9/2009,4,0,Astro Faculty,0,2 +2740,Rob Webbink,"University of Illinois, Urbana-Champaign",11/26/2018,,,https://ciera.northwestern.edu/visits/rob-webbink/,1254873600,1254873600,2009,,2010,10/7/2009,10/7/2009,1,0,Postdoc,0,1 +5257,Shirley Ho,"University of California, Berkeley",10/2/2009,,,https://ciera.northwestern.edu/visits/shirley-ho/,1254787200,1254787200,2009,astrophysics-seminars,2010,10/6/2009,10/6/2009,1,0,Astro Faculty,0,2 +2742,Chris Belczynski,New Mexico State University,11/26/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski/,1253836800,1254441600,2009,,2010,9/25/2009,10/2/2009,8,0,Postdoc,0,1 +5256,Paolo Gondolo,University of Utah,9/2/2009,,,https://ciera.northwestern.edu/visits/paolo-gondolo/,1254182400,1254182400,2009,astrophysics-seminars,2010,9/29/2009,9/29/2009,1,0,Astro Faculty,0,1 +2743,Smadar Naoz,Tel Aviv University,11/26/2018,,,https://ciera.northwestern.edu/visits/smadar-naoz-2/,1253404800,1253923200,2009,special-astronomy-seminars,2010,9/20/2009,9/26/2009,7,1,Astro Faculty,0,1 +5255,Enrico Ramirez-Ruiz,UC Santa Cruz,9/2/2009,,,https://ciera.northwestern.edu/visits/enrico-ramirez-ruiz-5/,1253577600,1253577600,2009,astrophysics-seminars,2010,9/22/2009,9/22/2009,1,0,Astro Faculty,0,1 +2744,John Fregeau,"University of California, Santa Barbara",11/26/2018,,,https://ciera.northwestern.edu/visits/john-fregeau/,1251331200,1251676800,2008,special-astronomy-seminars,2009,8/27/2009,8/31/2009,5,0,Group Meeting,1,1 +2746,Jeremy Sepinsky,University of Scranton,11/26/2018,,,https://ciera.northwestern.edu/visits/jeremy-sepinsky-2/,1248566400,1249516800,2009,,2009,7/26/2009,8/6/2009,12,0,Group Meeting,0,1 +2745,Diego Fazi,California Institute of Technology,11/26/2018,,,https://ciera.northwestern.edu/visits/diego-fazi/,1249084800,1249516800,2008,,2009,8/1/2009,8/6/2009,6,0,Group Meeting,0,1 +2874,Tim Linden,"University of California, Santa Cruz",11/30/2018,,,https://ciera.northwestern.edu/visits/tim-linden-4/,1248307200,1248652800,2008,,2009,7/23/2009,7/27/2009,5,0,Astro Faculty,1,1 +2876,Richard O'Shaughnessy,Pennsylvania State University,11/30/2018,,,https://ciera.northwestern.edu/visits/richard-oshaughnessy/,1248048000,1248220800,2008,,2009,7/20/2009,7/22/2009,3,0,Astro Faculty,0,1 +2878,Natalie Hinkel,Arizona State University,11/30/2018,,,https://ciera.northwestern.edu/visits/natalie-hinkel/,1248220800,1248220800,2008,special-astronomy-seminars,2009,7/22/2009,7/22/2009,1,0,Astro Faculty,0,1 +2877,Marco Cavagli�,The University of Mississippi,11/30/2018,,,https://ciera.northwestern.edu/visits/marco-cavaglia/,1247011200,1247097600,2008,,2009,7/8/2009,7/9/2009,2,0,Astro Faculty,0,1 +2879,Will Farr,Massachusetts Institute of Technology,11/30/2018,,,https://ciera.northwestern.edu/visits/will-farr-2/,1245283200,1245369600,2008,,2009,6/18/2009,6/19/2009,2,0,Postdoc,1,1 +2880,Sherry Suyu,University of Bonn,11/30/2018,,,https://ciera.northwestern.edu/visits/sherry-suyu/,1244592000,1245024000,2008,special-astronomy-seminars,2009,6/10/2009,6/15/2009,6,1,Group Meeting,0,1 +5268,Lucy Fortson,Adler Planetarium,6/5/2009,,,https://ciera.northwestern.edu/visits/lucy-fortson/,1243900800,1243900800,2008,astrophysics-seminars,2009,6/2/2009,6/2/2009,1,0,Group Meeting,0,1 +2882,Alberto Sesana,Pennsylvania State University,11/30/2018,,,https://ciera.northwestern.edu/visits/alberto-sesana/,1242777600,1243123200,2008,special-astronomy-seminars,2009,5/20/2009,5/24/2009,5,0,Astro Faculty,0,1 +2881,Adam Burrows,Princeton University,11/30/2018,,,https://ciera.northwestern.edu/visits/adam-burrows/,1242950400,1242950400,2008,,2009,5/22/2009,5/22/2009,1,0,Group Meeting,0,1 +2883,Evert Glebbeek,McMaster University,11/30/2018,,,https://ciera.northwestern.edu/visits/evert-glebbeek/,1242604800,1242864000,2008,,2009,5/18/2009,5/21/2009,4,1,Postdoc,0,1 +5267,Ulysses Sofia,Whitman of College,5/5/2009,Dave Meyer,,https://ciera.northwestern.edu/visits/ulysses-sofia/,1242691200,1242691200,2008,astrophysics-seminars,2009,5/19/2009,5/19/2009,1,0,Astro Faculty,0,1 +2884,Hsiao-Wen Chen,University of Chicago,11/30/2018,,,https://ciera.northwestern.edu/visits/hsiao-wen-chen/,1242086400,1242086400,2008,astrophysics-seminars,2009,5/12/2009,5/12/2009,1,0,Postdoc,0,1 +5266,Dan Clements,Boston University,5/5/2009,Giles Novak,,https://ciera.northwestern.edu/visits/dan-clements/,1241481600,1241481600,2008,astrophysics-seminars,2009,5/5/2009,5/5/2009,1,0,Group Meeting,0,1 +2885,Benjamin Knispel,"Max Planck Institute for Gravitational Physics, Germany",11/30/2018,,,https://ciera.northwestern.edu/visits/benjamin-knispel/,1240617600,1241136000,2008,special-astronomy-seminars,2009,4/25/2009,5/1/2009,7,1,Group Meeting,0,1 +2886,TJ Cox,Harvard-Smithsonian Center for Astrophysics,11/30/2018,,,https://ciera.northwestern.edu/visits/tj-cox/,1240790400,1240963200,2008,astrophysics-seminars,2009,4/27/2009,4/29/2009,3,0,Astro Faculty,0,1 +2888,Jonathan Gair,University of Cambridge,11/30/2018,,,https://ciera.northwestern.edu/visits/jonathan-gair/,1239667200,1240358400,2008,,2009,4/14/2009,4/22/2009,9,1,Grad Student,1,1 +2887,Maxim Lyutikov,Purdue University,11/30/2018,,,https://ciera.northwestern.edu/visits/maxim-lyutikov/,1240272000,1240272000,2008,astrophysics-seminars,2009,4/21/2009,4/21/2009,1,0,Astro Faculty,0,1 +5265,Clem Pryke,University of Chicago,4/5/2009,Mel Ulmer,,https://ciera.northwestern.edu/visits/clem-pryke/,1239062400,1239145200,2008,astrophysics-seminars,2009,4/7/2009,4/7/2009,1.958333333,0,Astro Faculty,0,1 +5275,Ed Chambers,Boston University,3/5/2009,Farhad Zadeh,,https://ciera.northwestern.edu/visits/ed-chambers/,1236643200,1236643200,2008,astrophysics-seminars,2009,3/10/2009,3/10/2009,1,0,Astro Faculty,0,1 +5274,Grace Wolf-Chase,Adler Planetarium / University of Chicago,3/5/2009,Doug Roberts,,https://ciera.northwestern.edu/visits/grace-wolf-chase-2/,1236038400,1236038400,2008,astrophysics-seminars,2009,3/3/2009,3/3/2009,1,1,Astro Faculty,0,1 +5273,Jungyeon Cho,"Chungnam National University, Korea",2/5/2009,Giles Novak,,https://ciera.northwestern.edu/visits/jungyeon-cho-2/,1235433600,1235433600,2008,astrophysics-seminars,2009,2/24/2009,2/24/2009,1,1,Group Meeting,0,1 +5272,Todd Tripp,University of Massachusetts,2/5/2009,Dave Meyer,,https://ciera.northwestern.edu/visits/todd-tripp/,1234828800,1234828800,2008,astrophysics-seminars,2009,2/17/2009,2/17/2009,1,0,Group Meeting,0,1 +5271,Andrew Baker,Rutgers University,2/5/2009,Mel Ulmer,,https://ciera.northwestern.edu/visits/andrew-baker/,1234224000,1234224000,2008,astrophysics-seminars,2009,2/10/2009,2/10/2009,1,0,Astro Faculty,0,1 +5270,James Miller-Jones,National Radio Astronomy Observatory,1/5/2009,,,https://ciera.northwestern.edu/visits/j-miller-jones/,1232409600,1232409600,2008,astrophysics-seminars,2009,1/20/2009,1/20/2009,1,0,Group Meeting,0,1 +5269,Jim Braatz,National Radio Astronomy Observatory,1/5/2009,Farhad Zadeh,,https://ciera.northwestern.edu/visits/jim-braatz/,1231804800,1231804800,2008,astrophysics-seminars,2009,1/13/2009,1/13/2009,1,0,Astro Faculty,0,1 +2889,Jonathan McKinney,Stanford University,11/30/2018,,,https://ciera.northwestern.edu/visits/jonathan-mckinney/,1228694400,1228780800,2008,,2009,12/8/2008,12/9/2008,2,0,Group Meeting,0,1 +2890,Yuexing Li,Harvard University,11/30/2018,,,https://ciera.northwestern.edu/visits/yuexing-li/,1228348800,1228435200,2008,,2009,12/4/2008,12/5/2008,2,0,Astro Faculty,0,1 +2891,Yoram Lithwick,Canadian Institute for Theoretical Astrophysics,11/30/2018,,,https://ciera.northwestern.edu/visits/yoram-lithwick/,1228089600,1228176000,2008,,2009,12/1/2008,12/2/2008,2,1,Postdoc,0,1 +2892,Elizabeth Tasker,University of Florida,11/30/2018,,,https://ciera.northwestern.edu/visits/elizabeth-tasker/,1227484800,1227571200,2008,,2009,11/24/2008,11/25/2008,2,0,Astro Faculty,0,1 +2901,Avery Broderick,Canadian Institute for Theoretical Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/avery-broderick/,1227139200,1227225600,2008,,2009,11/20/2008,11/21/2008,2,1,Astro Faculty,0,1 +2902,Brant Robertson,University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/brant-robertson/,1226966400,1227052800,2008,astrophysics-seminars,2009,11/18/2008,11/19/2008,2,0,Astro Faculty,0,1 +2903,Avi Loeb,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/avi-loeb/,1226620800,1226707200,2008,,2009,11/14/2008,11/15/2008,2,0,Astro Faculty,0,1 +2904,Kostas Tassis,California Institute of Technology / NASA Jet Propulsion Laboratory,12/2/2018,,,https://ciera.northwestern.edu/visits/tassis-kostas/,1226534400,1226620800,2008,,2009,11/13/2008,11/14/2008,2,0,Postdoc,0,1 +2905,Glenn Van de Ven,Institute for Advanced Study,12/2/2018,,,https://ciera.northwestern.edu/visits/glenn-van-de-ven/,1226361600,1226361600,2008,astrophysics-seminars,2009,11/11/2008,11/11/2008,1,0,Astro Faculty,0,1 +5279,Mike Gladders,University of Chicago,10/6/2008,,,https://ciera.northwestern.edu/visits/mike-gladders/,1224547200,1224547200,2008,astrophysics-seminars,2009,10/21/2008,10/21/2008,1,0,Astro Faculty,0,1 +2906,Ramesh Narayan,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/ramesh-narayan-2/,1223942400,1223942400,2008,astrophysics-seminars,2009,10/14/2008,10/14/2008,1,0,Postdoc,0,1 +5278,Anuj Sarma,DePaul University,10/6/2008,,,https://ciera.northwestern.edu/visits/anuj-sarma/,1223337600,1223337600,2008,astrophysics-seminars,2009,10/7/2008,10/7/2008,1,0,Grad Student,0,1 +5277,James Jackson,Boston University,9/6/2008,Farhad Zadeh,,https://ciera.northwestern.edu/visits/james-jackson/,1222732800,1222732800,2008,astrophysics-seminars,2009,9/30/2008,9/30/2008,1,0,Astro Faculty,0,1 +5276,Matt Haffner,"University of Wisconsin, Madison",9/6/2008,Dave Meyer,,https://ciera.northwestern.edu/visits/matt-haffner/,1222128000,1222128000,2008,astrophysics-seminars,2009,9/23/2008,9/23/2008,1,0,,1,1 +2907,John Seiradakis,Aristotle University of Thessaloniki,12/2/2018,,,https://ciera.northwestern.edu/visits/john-seiradakis/,1221782400,1221868800,2008,,2009,9/19/2008,9/20/2008,2,1,,1,1 +2908,Manuela Campanelli,Rochester Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/manuela-campanelli/,1212451200,1212451200,2007,astrophysics-seminars,2008,6/3/2008,6/3/2008,1,0,,1,1 +2909,Anthony Piro,"University of California, Berkeley",12/2/2018,,,https://ciera.northwestern.edu/visits/anthony-piro/,1210636800,1210636800,2007,astrophysics-seminars,2008,5/13/2008,5/13/2008,1,0,,1,1 +2910,Massimo Marengo,Harvard-Smithsonian Center for Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/massimo-marengo/,1210032000,1210032000,2007,astrophysics-seminars,2008,5/6/2008,5/6/2008,1,0,,1,1 +2911,Daniel Fabrycky,Harvard-Smithsonian Center for Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/daniel-fabrycky-2/,1208736000,1209081600,2007,special-astronomy-seminars,2008,4/21/2008,4/25/2008,5,0,,1,1 +5282,Richard White,Space Telescope Science Institute,4/6/2008,Farhad Zadeh,,https://ciera.northwestern.edu/visits/richard-white/,1208822400,1208822400,2008,astrophysics-seminars,2008,4/22/2008,4/22/2008,1,0,,1,1 +5281,Daniela Calzetti,University of Massachusetts,4/6/2008,Dave Meyer,,https://ciera.northwestern.edu/visits/daniela-calzetti/,1208217600,1208217600,2008,astrophysics-seminars,2008,4/15/2008,4/15/2008,1,0,,1,1 +2912,Patrick Brady,"University of Wisconsin, Milwaukee",12/2/2018,,,https://ciera.northwestern.edu/visits/patrick-brady-2/,1207612800,1207699200,2007,astrophysics-seminars,2008,4/8/2008,4/9/2008,2,0,,1,2 +5280,Brenda Matthews,Herzberg Institute of Astrophysics,4/6/2008,,,https://ciera.northwestern.edu/visits/brenda-matthews/,1207612800,1207612800,2008,astrophysics-seminars,2008,4/8/2008,4/8/2008,1,1,,1,2 +2913,Chris Belczynski,New Mexico State University,12/2/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski-2/,1205625600,1206489600,2007,,2008,3/16/2008,3/26/2008,11,0,,1,1 +2914,Michele Trenti,Space Telescope Science Institute,12/2/2018,,,https://ciera.northwestern.edu/visits/michele-trenti/,1205712000,1206057600,2007,astrophysics-seminars|special-astronomy-seminars,2008,3/17/2008,3/21/2008,5,0,,1,1 +5287,Stelios Kazantzidis,Ohio State University,3/6/2008,Vicky Kalogera,,https://ciera.northwestern.edu/visits/stelios-kazantzidis-2/,1205193600,1205193600,2007,astrophysics-seminars,2008,3/11/2008,3/11/2008,1,0,,1,1 +2916,Steffen Knollmann,Astrophysical Institute Potsdam,12/2/2018,,,https://ciera.northwestern.edu/visits/steffen-knollmann/,1204502400,1204848000,2007,special-astronomy-seminars,2008,3/3/2008,3/7/2008,5,1,,1,1 +5286,David Chuss,NASA Goddard Space Flight Center,3/6/2008,Giles Novak,,https://ciera.northwestern.edu/visits/david-chuss-3/,1204588800,1204671600,2007,astrophysics-seminars,2008,3/4/2008,3/4/2008,1.958333333,0,,1,1 +2917,Natalia Ivanova,Canadian Institute for Theoretical Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/natalia-ivanova/,1203897600,1203984000,2007,special-astronomy-seminars,2008,2/25/2008,2/26/2008,2,1,Group Meeting,1,1 +5285,Matt Haffner,University of Wisconsin,2/6/2008,Dave Meyer,,https://ciera.northwestern.edu/visits/matt-haffner-2/,1203984000,1203984000,2007,astrophysics-seminars,2008,2/26/2008,2/26/2008,1,0,Group Meeting,0,1 +5284,Fred Adams,University of Michigan,2/6/2008,Soko Matsumura,,https://ciera.northwestern.edu/visits/fred-adams-2/,1203379200,1203379200,2007,astrophysics-seminars,2008,2/19/2008,2/19/2008,1,0,Astro Faculty,1,1 +2918,Diana Valencia,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/diana-valencia-2/,1202860800,1203033600,2007,special-astronomy-seminars,2008,2/13/2008,2/15/2008,3,0,Astro Faculty,0,1 +2919,Gijs Roelofs,Harvard-Smithsonian Center for Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/gijs-roelofs/,1201996800,1202601600,2007,astrophysics-seminars,2008,2/3/2008,2/10/2008,8,0,Group Meeting,0,1 +2921,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-5/,1201132800,1201219200,2007,,2008,1/24/2008,1/25/2008,2,0,Group Meeting,0,2 +2920,Jay Gallagher,"University of Wisconsin, Madison",12/2/2018,,,https://ciera.northwestern.edu/visits/jay-gallagher/,1201219200,1201219200,2007,,2008,1/25/2008,1/25/2008,1,0,Astro Faculty,0,1 +2922,Vasilis Paschalidis,University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/vasilis-paschalidis/,1201132800,1201132800,2007,special-astronomy-seminars,2008,1/24/2008,1/24/2008,1,0,Group Meeting,0,2 +5283,Fabian Heitsch,University of Michigan,1/6/2008,Farhad Zadeh,,https://ciera.northwestern.edu/visits/fabian-heitsch-2/,1200960000,1200960000,2008,astrophysics-seminars,2008,1/22/2008,1/22/2008,1,0,Astro Faculty,0,1 +2923,Vikki Meadows,University of Washington,12/2/2018,,,https://ciera.northwestern.edu/visits/vikki-meadows/,1200528000,1200614400,2007,,2008,1/17/2008,1/18/2008,2,0,Astro Faculty,0,1 +2924,Monica Valluri,University of Michigan,12/2/2018,,,https://ciera.northwestern.edu/visits/monica-valluri/,1200355200,1200355200,2007,astrophysics-seminars,2008,1/15/2008,1/15/2008,1,0,Astro Faculty,0,1 +2925,Duncan Brown,Syracuse University,12/2/2018,,,https://ciera.northwestern.edu/visits/duncan-brown/,1198108800,1198108800,2007,,2008,12/20/2007,12/20/2007,1,0,Postdoc,1,1 +5295,Aaron Chou,New York University,12/6/2007,,,https://ciera.northwestern.edu/visits/aaron-chou/,1196726400,1196726400,2007,astrophysics-seminars,2008,12/4/2007,12/4/2007,1,0,Astro Faculty,0,1 +5294,Al Wootten,National Radio Astronomy Observatory,11/6/2007,Farhad Zadeh,,https://ciera.northwestern.edu/visits/al-wootten/,1196121600,1196121600,2007,astrophysics-seminars,2008,11/27/2007,11/27/2007,1,0,Group Meeting,0,1 +5293,Athol Kemball,University of Illinois at Urbana-Champaign,11/6/2007,Doug Roberts,,https://ciera.northwestern.edu/visits/athol-kemball/,1195516800,1195516800,2007,astrophysics-seminars,2008,11/20/2007,11/20/2007,1,0,Group Meeting,0,1 +2926,Alicia Soderberg,California Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/alicia-soderberg/,1194825600,1195084800,2007,astrophysics-seminars,2008,11/12/2007,11/15/2007,4,0,Group Meeting,0,1 +2927,Holger Baumgardt,University of Bonn,12/2/2018,,,https://ciera.northwestern.edu/visits/holger-baumgardt/,1194739200,1194998400,2007,special-astronomy-seminars,2008,11/11/2007,11/14/2007,4,1,Astro Faculty,0,1 +2928,Dimitar Sasselov,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/dimitar-sasselov/,1194480000,1194652800,2007,,2008,11/8/2007,11/10/2007,3,0,Astro Faculty,0,1 +5292,Sean Andrews,Harvard-Smithsonian Center for Astrophysics,11/6/2007,Dave Meyer,,https://ciera.northwestern.edu/visits/sean-andrews-2/,1194307200,1194307200,2007,astrophysics-seminars,2008,11/6/2007,11/6/2007,1,0,Astro Faculty,0,1 +5291,Nick Scoville,California Institute of Technology,10/6/2007,Giles Novak,,https://ciera.northwestern.edu/visits/nick-scoville/,1193702400,1193702400,2007,astrophysics-seminars,2008,10/30/2007,10/30/2007,1,0,Postdoc,0,1 +5290,Ilya Mandel,California Institute of Technology,10/6/2007,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ilya-mandel-3/,1193097600,1193097600,2007,astrophysics-seminars,2008,10/23/2007,10/23/2007,1,0,Astro Faculty,0,1 +5289,Paul Goldsmith,NASA Jet Propulsion Laboratory,10/6/2007,Giles Novak,,https://ciera.northwestern.edu/visits/paul-goldsmith/,1192492800,1192492800,2007,astrophysics-seminars,2008,10/16/2007,10/16/2007,1,0,Astro Faculty,0,1 +2929,Pau Amaro-Seoane,Max Planck Institute for Gravitational Physics / Albert Einstein Institute,12/2/2018,,,https://ciera.northwestern.edu/visits/pau-amaro-seoane/,1191801600,1192060800,2007,,2008,10/8/2007,10/11/2007,4,1,Astro Faculty,0,3 +2930,Saul Rappaport,Massachusetts Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/saul-rappaport-2/,1191801600,1191888000,2007,astrophysics-seminars,2008,10/8/2007,10/9/2007,2,0,Postdoc,0,3 +2931,Dave Pooley,"University of Wisconsin, Madison",12/2/2018,,,https://ciera.northwestern.edu/visits/dave-pooley/,1191801600,1191801600,2007,,2008,10/8/2007,10/8/2007,1,0,Astro Faculty,0,3 +5288,Fritz Benedict,"Univeristy of Texas, Austin",10/6/2007,Fred Rasio,,https://ciera.northwestern.edu/visits/fritz-benedict/,1191283200,1191283200,2007,astrophysics-seminars,2008,10/2/2007,10/2/2007,1,0,Astro Faculty,0,1 +5308,Milind Diwan,Brookhaven National Library,8/6/2007,Mel Ulmer,,https://ciera.northwestern.edu/visits/milind-diwan/,1186099200,1186099200,2006,astrophysics-seminars,2007,8/3/2007,8/3/2007,1,0,Astro Faculty,1,1 +5307,Mark Wardle,"Macquarie University, Sydney, Australia",7/6/2007,Farhad Zadeh,,https://ciera.northwestern.edu/visits/mark-wardle-3/,1185840000,1185840000,2006,astrophysics-seminars,2007,7/31/2007,7/31/2007,1,1,Astro Faculty,0,1 +2974,Alberto Vecchio,"Birmingham, UK",12/2/2018,,,https://ciera.northwestern.edu/visits/alberto-vecchio/,1158710400,1181865600,2006,astrophysics-seminars,2007,9/20/2006,6/15/2007,269,1,Astro Faculty,0,2 +2932,Ashley Ruiter,New Mexico State University,12/2/2018,,,https://ciera.northwestern.edu/visits/ashley-ruiter/,1179705600,1180656000,2006,special-astronomy-seminars,2007,5/21/2007,6/1/2007,12,0,,1,1 +2954,Mike Politano,Marquette University,12/2/2018,,,https://ciera.northwestern.edu/visits/mike-politano/,1170028800,1180569600,2006,,2007,1/29/2007,5/31/2007,123,0,,1,1 +2944,Steinn Sigurdsson,Pennsylvania State University,12/2/2018,,,https://ciera.northwestern.edu/visits/steinn-sigurdsson/,1175472000,1180483200,2006,special-astronomy-seminars,2007,4/2/2007,5/30/2007,59,0,Group Meeting,1,1 +2972,Michael Eracleous,Pennsylvania State University,12/2/2018,,,https://ciera.northwestern.edu/visits/mike-eracleous/,1177977600,1180483200,2006,,2007,5/1/2007,5/30/2007,30,0,Postdoc,1,2 +2933,Ben Owen,Pennsylvania State University,12/2/2018,,,https://ciera.northwestern.edu/visits/ben-owen/,1179792000,1180396800,2006,special-astronomy-seminars,2007,5/22/2007,5/29/2007,8,0,,1,2 +5306,Dan Watson,University of Rochester,5/6/2007,,,https://ciera.northwestern.edu/visits/dan-watson/,1179792000,1179792000,2006,astrophysics-seminars,2007,5/22/2007,5/22/2007,1,0,Astro Faculty,0,2 +2934,Stephen Zepf,Michigan State University,12/2/2018,,,https://ciera.northwestern.edu/visits/stephen-zepf-2/,1179360000,1179360000,2006,special-astronomy-seminars,2007,5/17/2007,5/17/2007,1,0,,1,1 +2936,Jonathan Tan,University of Florida,12/2/2018,,,https://ciera.northwestern.edu/visits/jonathan-tan/,1179100800,1179273600,2006,astrophysics-seminars,2007,5/14/2007,5/16/2007,3,0,,1,1 +2938,Hiranya Peiris,University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/hiranya-peiris/,1178582400,1178582400,2006,astrophysics-seminars,2007,5/8/2007,5/8/2007,1,0,,1,1 +2939,Jason Steffen,Fermi National Accelerator Laboratory,12/2/2018,,,https://ciera.northwestern.edu/visits/jason-steffen/,1178150400,1178150400,2006,special-astronomy-seminars,2007,5/3/2007,5/3/2007,1,0,Group Meeting,0,1 +5299,Mary Putman,University of Michigan,5/6/2007,Dave Meyer,,https://ciera.northwestern.edu/visits/mary-putman/,1177977600,1177977600,2006,astrophysics-seminars,2007,5/1/2007,5/1/2007,1,0,Group Meeting,0,2 +2941,Debra Fischer,San Francisco State University,12/2/2018,,,https://ciera.northwestern.edu/visits/debra-fischer/,1177286400,1177545600,2006,astrophysics-seminars,2007,4/23/2007,4/26/2007,4,0,Group Meeting,0,1 +2940,Gregory Sivakoff,Ohio State University,12/2/2018,,,https://ciera.northwestern.edu/visits/gregory-sivakoff/,1177545600,1177545600,2006,special-astronomy-seminars,2007,4/26/2007,4/26/2007,1,0,Other Faculty,1,1 +5297,John Beacom,Ohio State University,4/6/2007,Andre de Gouvea,,https://ciera.northwestern.edu/visits/john-beacom/,1176768000,1176768000,2006,astrophysics-seminars,2007,4/17/2007,4/17/2007,1,0,Postdoc,0,1 +2942,Alan Guth,Massachusetts Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/alan-guth/,1175817600,1176249600,2006,,2007,4/6/2007,4/11/2007,6,0,Postdoc,0,1 +2943,David Charbonneau,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/david-charbonneau/,1175558400,1175644800,2006,astrophysics-seminars,2007,4/3/2007,4/4/2007,2,0,Astro Faculty,0,1 +2945,Kostas Tassis,University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/kostas-tassis-2/,1175126400,1175126400,2006,special-astronomy-seminars,2007,3/29/2007,3/29/2007,1,0,Group Meeting,0,1 +5296,Leo Blitz,"University of California, Berkeley",3/6/2007,Giles Novak,,https://ciera.northwestern.edu/visits/leo-blitz/,1174953600,1174953600,2006,astrophysics-seminars,2007,3/27/2007,3/27/2007,1,0,Astro Faculty,0,1 +2946,Mario Juric,Institute for Advanced Study,12/2/2018,,,https://ciera.northwestern.edu/visits/mario-juric-2/,1173916800,1174003200,2006,special-astronomy-seminars,2007,3/15/2007,3/16/2007,2,0,Astro Faculty,0,1 +2947,Scott Tremaine,Princeton University,12/2/2018,,,https://ciera.northwestern.edu/visits/scott-tremaine-2/,1173312000,1173398400,2006,,2007,3/8/2007,3/9/2007,2,0,Postdoc,0,1 +5315,Eric Becklin,UCLA,3/7/2007,Giles Novak,,https://ciera.northwestern.edu/visits/eric-becklin/,1173052800,1173052800,2006,astrophysics-seminars,2007,3/5/2007,3/5/2007,1,0,Group Meeting,0,1 +2949,Vasiliki Pavlidou,University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/vaso-pavlidou/,1172707200,1172707200,2006,special-astronomy-seminars,2007,3/1/2007,3/1/2007,1,0,Postdoc,0,1 +5314,Jimmy Irwin,University of Michigan,2/7/2007,Mel Ulmer,,https://ciera.northwestern.edu/visits/jimmy-irwin/,1172534400,1172534400,2006,astrophysics-seminars,2007,2/27/2007,2/27/2007,1,0,Postdoc,0,1 +5313,Seth Redfield,"University of Texas, Austin",2/7/2007,Dave Meyer,,https://ciera.northwestern.edu/visits/seth-redfield/,1171929600,1171929600,2006,astrophysics-seminars,2007,2/20/2007,2/20/2007,1,0,Astro Faculty,0,1 +2950,Shri Kulkarni,California Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/shri-kulkarni/,1171497600,1171497600,2006,special-astronomy-seminars,2007,2/15/2007,2/15/2007,1,0,Astro Faculty,0,1 +5312,Nuria Calvet,University of Michigan,2/7/2007,Ron Taam,,https://ciera.northwestern.edu/visits/nuria-calvet/,1171324800,1171324800,2006,astrophysics-seminars,2007,2/13/2007,2/13/2007,1,0,Postdoc,0,1 +2951,Ilya Mandel,California Institute of Technology,12/2/2018,,,https://ciera.northwestern.edu/visits/ilya-mandel-2/,1170892800,1171065600,2006,special-astronomy-seminars,2007,2/8/2007,2/10/2007,3,0,Astro Faculty,0,1 +2953,Stelios Kazantzidis,Stanford University,12/2/2018,,,https://ciera.northwestern.edu/visits/stelios-kazantzidis/,1170288000,1170288000,2006,special-astronomy-seminars,2007,2/1/2007,2/1/2007,1,0,,1,1 +5311,Kristen Menou,Columbia University,1/7/2007,Vicky Kalogera,,https://ciera.northwestern.edu/visits/kristen-menou-2/,1170115200,1170115200,2006,astrophysics-seminars,2007,1/30/2007,1/30/2007,1,0,,1,1 +5309,James de Buizer,Gemini Observatory,1/6/2007,Farhad Zadeh,,https://ciera.northwestern.edu/visits/james-de-buizer/,1168905600,1169510400,2006,astrophysics-seminars,2007,1/16/2007,1/23/2007,8,0,,1,1 +5310,Dan Marrone,University of Chicago,1/7/2007,Giles Novak,,https://ciera.northwestern.edu/visits/dan-marrone/,1169510400,1169510400,2006,astrophysics-seminars,2007,1/23/2007,1/23/2007,1,0,,1,1 +2955,Avery Broderick,Harvard-Smithsonian Center for Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/avery-broderick-2/,1169078400,1169164800,2006,special-astronomy-seminars,2007,1/18/2007,1/19/2007,2,0,,1,1 +2956,Richard Edgar,University of Rochester,12/2/2018,,,https://ciera.northwestern.edu/visits/richard-edgar/,1168473600,1168560000,2006,special-astronomy-seminars,2007,1/11/2007,1/12/2007,2,0,Postdoc,0,1 +2960,Chris Belczynski,New Mexico State University,12/2/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski-4/,1166313600,1167696000,2006,,2007,12/17/2006,1/2/2007,17,0,Postdoc,0,1 +2973,Michael Eracleous,Pennsylvania State University,12/2/2018,,,https://ciera.northwestern.edu/visits/mike-eracleous-2/,1158710400,1166227200,2006,astrophysics-seminars,2007,9/20/2006,12/16/2006,88,0,Postdoc,0,2 +2957,Natasha Ivanova,Canadian Institute for Theoretical Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/natasha-ivanova/,1165276800,1166140800,2006,,2007,12/5/2006,12/15/2006,11,1,Astro Faculty,0,1 +2958,Josh Faber,"University of Illinois, Urbana-Champaign",12/2/2018,,,https://ciera.northwestern.edu/visits/josh-faber-2/,1165363200,1165622400,2006,,2007,12/6/2006,12/9/2006,4,0,Astro Faculty,0,1 +2968,Marta Volonteri,University of Cambrdige,12/2/2018,,,https://ciera.northwestern.edu/visits/marta-volonteri-2/,1159660800,1164844800,2006,astrophysics-seminars,2007,10/1/2006,11/30/2006,61,1,,1,1 +5319,Hiroshi Matsuo,National Astronomical Observatory of Japan,11/7/2006,Giles Novak,,https://ciera.northwestern.edu/visits/hiroshi-matsuo/,1164672000,1164672000,2006,astrophysics-seminars,2007,11/28/2006,11/28/2006,1,1,Astro Faculty,0,1 +2959,Chris Belczynski,New Mexico State University,12/2/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski-3/,1162684800,1164585600,2006,,2007,11/5/2006,11/27/2006,23,0,Astro Faculty,0,1 +2961,Ed Thommes,Canadian Institute for Theoretical Astrophysics,12/2/2018,,,https://ciera.northwestern.edu/visits/ed-thommes/,1163376000,1163721600,2006,special-astronomy-seminars,2007,11/13/2006,11/17/2006,5,1,Astro Faculty,0,1 +2962,Jennifer Hoffman,"University of California, Berkeley",12/2/2018,,,https://ciera.northwestern.edu/visits/jennifer-hoffman/,1163462400,1163548800,2006,astrophysics-seminars,2007,11/14/2006,11/15/2006,2,0,Astro Faculty,0,1 +2964,Loren Hoffman,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/loren-hoffman/,1162166400,1162944000,2006,special-astronomy-seminars,2007,10/30/2006,11/8/2006,10,0,Astro Faculty,0,1 +2963,Sarah Stewart-Mukhopadhyay,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/sarah-stewart-mukhopadhyay/,1162512000,1162512000,2006,,2007,11/3/2006,11/3/2006,1,0,Astro Faculty,0,1 +5318,Snezana Stanimirovic,"University of Wisconsin, Madison",10/6/2006,Dave Meyer,,https://ciera.northwestern.edu/visits/snezana-stanimirovic/,1162252800,1162252800,2006,astrophysics-seminars,2007,10/31/2006,10/31/2006,1,0,Astro Faculty,0,1 +2966,Tal Alexander,"Weizmann Institute, Israel",12/2/2018,,,https://ciera.northwestern.edu/visits/tal-alexander/,1161561600,1161907200,2006,special-astronomy-seminars,2007,10/23/2006,10/27/2006,5,1,Group Meeting,0,1 +2965,Matthew Bailes,"Swinburne, Australia",12/2/2018,,,https://ciera.northwestern.edu/visits/matthew-bailes/,1161820800,1161907200,2006,special-astronomy-seminars,2007,10/26/2006,10/27/2006,2,1,Astro Faculty,0,1 +2967,Stan Peale,"University of California, Santa Barbara",12/2/2018,,,https://ciera.northwestern.edu/visits/stan-peale/,1161475200,1161648000,2006,astrophysics-seminars,2007,10/22/2006,10/24/2006,3,0,Group Meeting,0,1 +2969,Tiziana Di Matteo,Carnegie Mellon University,12/2/2018,,,https://ciera.northwestern.edu/visits/tiziana-di-matteo/,1160438400,1160438400,2006,astrophysics-seminars,2007,10/10/2006,10/10/2006,1,0,Astro Faculty,0,1 +5317,Stanislav Boldyrev,"University of Wisconsin, Madison",10/6/2006,Farhad Zadeh,,https://ciera.northwestern.edu/visits/stanislav-boldyrev/,1159833600,1159833600,2006,astrophysics-seminars,2007,10/3/2006,10/3/2006,1,0,,1,1 +2970,Scott Dodelson,Fermi National Accelerator Laboratory / University of Chicago,12/2/2018,,,https://ciera.northwestern.edu/visits/scott-dodelson/,1159488000,1159488000,2006,,2007,9/29/2006,9/29/2006,1,0,Astro Faculty,0,1 +5316,Stephan Meyer,University of Chicago,9/6/2006,Mel Ulmer,,https://ciera.northwestern.edu/visits/stephan-meyer/,1159228800,1159228800,2006,astrophysics-seminars,2007,9/26/2006,9/26/2006,1,0,Postdoc,0,1 +2971,Eric Ford,Harvard University,12/2/2018,,,https://ciera.northwestern.edu/visits/eric-ford/,1158796800,1158883200,2006,,2007,9/21/2006,9/22/2006,2,0,Group Meeting,0,1 +3066,Pau Amaro-Seoane,Max Planck Institute,12/10/2018,,,https://ciera.northwestern.edu/visits/pau-amaro-seoane-2/,1153440000,1154044800,2005,astrophysics-seminars,2006,7/21/2006,7/28/2006,8,1,Astro Faculty,1,1 +5365,Darek Lis,California Institute of Technology,5/14/2006,Farhad Zadeh,,https://ciera.northwestern.edu/visits/darek-lis/,1148947200,1148947200,2005,astrophysics-seminars,2006,5/30/2006,5/30/2006,1,0,Postdoc,1,1 +3067,Andrew Youdin,Princeton University,12/10/2018,,,https://ciera.northwestern.edu/visits/andrew-youdin-2/,1148169600,1148428800,2005,astrophysics-seminars,2006,5/21/2006,5/24/2006,4,0,Grad Student,1,1 +5364,Daniel Chung,University of Wisconsin,5/14/2006,Andre de Gouvea,,https://ciera.northwestern.edu/visits/daniel-chung/,1147737600,1147737600,2005,astrophysics-seminars,2006,5/16/2006,5/16/2006,1,0,Postdoc,0,1 +3068,Yanqin Wu,University of Toronto,12/10/2018,,,https://ciera.northwestern.edu/visits/yanqin-wu-2/,1147219200,1147392000,2005,special-astronomy-seminars,2006,5/10/2006,5/12/2006,3,1,Astro Faculty,0,1 +5363,Alex Lazarian,University of Wisconsin,5/14/2006,Giles Novak,,https://ciera.northwestern.edu/visits/alex-lazarian-3/,1147132800,1147132800,2005,astrophysics-seminars,2006,5/9/2006,5/9/2006,1,0,Astro Faculty,0,1 +3069,Priya Natarajan,Yale University,12/10/2018,,,https://ciera.northwestern.edu/visits/priya-natarajan/,1146700800,1146787200,2005,,2006,5/4/2006,5/5/2006,2,0,Astro Faculty,0,2 +5362,Robert Millis,Lowell Observatory,5/14/2006,Dave Meyer,,https://ciera.northwestern.edu/visits/robert-millis/,1146700800,1146700800,2005,astrophysics-seminars,2006,5/4/2006,5/4/2006,1,0,Astro Faculty,0,2 +5361,Riccardo Giovanelli,Cornell University,5/14/2006,Mel Ulmer,,https://ciera.northwestern.edu/visits/riccardo-giovanelli/,1146528000,1146528000,2005,astrophysics-seminars,2006,5/2/2006,5/2/2006,1,0,Group Meeting,1,1 +5321,Mike A'Hearn,University of Maryland,4/14/2006,Dave Meyer,,https://ciera.northwestern.edu/visits/mike-ahearn/,1145923200,1145923200,2005,astrophysics-seminars,2006,4/25/2006,4/25/2006,1,0,Group Meeting,0,1 +3071,Gerald Brown,"State University of New York, Stony Brook",12/10/2018,,,https://ciera.northwestern.edu/visits/gerald-brown/,1145491200,1145664000,2005,,2006,4/20/2006,4/22/2006,3,0,Grad Student,0,1 +3072,Alex Wolszczan,Pennsylvania State University,12/10/2018,,,https://ciera.northwestern.edu/visits/alex-wolszczan/,1145232000,1145404800,2005,astrophysics-seminars,2006,4/17/2006,4/19/2006,3,0,Group Meeting,0,1 +5320,Richard Lovelace,Cornell University,4/6/2006,Ron Taam,,https://ciera.northwestern.edu/visits/richard-lovelace/,1144713600,1144713600,2005,astrophysics-seminars,2006,4/11/2006,4/11/2006,1,0,Group Meeting,0,1 +3073,Re'em Sari,California Institute of Technology,12/10/2018,,,https://ciera.northwestern.edu/visits/reem-sari/,1143504000,1143676800,2005,astrophysics-seminars|special-astronomy-seminars,2006,3/28/2006,3/30/2006,3,0,Astro Faculty,0,1 +3074,Monica Valluri,University of Chicago,12/10/2018,,,https://ciera.northwestern.edu/visits/monica-valluri-2/,1142467200,1142467200,2005,special-astronomy-seminars,2006,3/16/2006,3/16/2006,1,0,Postdoc,0,1 +3075,Mark Krumholz,Princeton University,12/10/2018,,,https://ciera.northwestern.edu/visits/mark-krumholz/,1141603200,1141948800,2005,astrophysics-seminars,2006,3/6/2006,3/10/2006,5,0,Astro Faculty,0,1 +5366,Dave Strickland,Johns Hopkins University,2/14/2006,Farhad Zadeh,,https://ciera.northwestern.edu/visits/dave-strickland/,1140480000,1140480000,2005,astrophysics-seminars,2006,2/21/2006,2/21/2006,1,0,Group Meeting,0,1 +3076,Kayhan Gultekin,University of Maryland,12/10/2018,,,https://ciera.northwestern.edu/visits/kayhan-gultekin/,1139961600,1140220800,2005,special-astronomy-seminars,2006,2/15/2006,2/18/2006,4,0,Group Meeting,0,1 +3077,James Truran,University of Chicago,12/10/2018,,,https://ciera.northwestern.edu/visits/james-truran/,1139875200,1139875200,2005,astrophysics-seminars,2006,2/14/2006,2/14/2006,1,0,Postdoc,0,1 +3078,Alycia Weinberger,Carnegie Mellon University,12/10/2018,,,https://ciera.northwestern.edu/visits/alycia-weinberger-2/,1138579200,1138665600,2005,astrophysics-seminars,2006,1/30/2006,1/31/2006,2,0,Group Meeting,0,1 +3079,Michela Mapelli,"Sissa, Italy",12/10/2018,,,https://ciera.northwestern.edu/visits/michela-mapelli/,1138147200,1138492800,2005,special-astronomy-seminars,2006,1/25/2006,1/29/2006,5,1,Astro Faculty,0,1 +3080,Shami Chatterjee,Harvard-Smithsonian Center for Astrophysics,12/10/2018,,,https://ciera.northwestern.edu/visits/shami-chatterjee-2/,1137974400,1138147200,2005,astrophysics-seminars,2006,1/23/2006,1/25/2006,3,0,Astro Faculty,0,1 +3081,Matija Cuk,University of British Columbia,12/10/2018,,,https://ciera.northwestern.edu/visits/matija-cuk/,1137542400,1137801600,2005,,2006,1/18/2006,1/21/2006,4,1,Group Meeting,0,1 +3082,Nick Gnedin,Fermi National Accelerator Laboratory,12/10/2018,,,https://ciera.northwestern.edu/visits/nick-gnedin-2/,1137456000,1137456000,2005,astrophysics-seminars,2006,1/17/2006,1/17/2006,1,0,Astro Faculty,0,1 +3083,Tamara Bogdanovic,Pennsylvania State University,12/10/2018,,,https://ciera.northwestern.edu/visits/tamara-bogdanovic/,1136937600,1137110400,2005,special-astronomy-seminars,2006,1/11/2006,1/13/2006,3,0,Group Meeting,0,1 +3084,Stratos Boutloukos,"University of Amsterdam, The Netherlands",12/10/2018,,,https://ciera.northwestern.edu/visits/stratos-boutloukos/,1136764800,1136937600,2005,special-astronomy-seminars,2006,1/9/2006,1/11/2006,3,1,Astro Faculty,0,1 +5373,Barbara Whitney,Wisconsin,11/15/2005,Farhad Zadeh,,https://ciera.northwestern.edu/visits/barbara-whitney/,1133222400,1133222400,2005,astrophysics-seminars,2006,11/29/2005,11/29/2005,1,0,Group Meeting,0,1 +3085,Vicky Kaspi,McGill University,12/10/2018,,,https://ciera.northwestern.edu/visits/vicky-kaspi/,1132531200,1132704000,2005,astrophysics-seminars,2006,11/21/2005,11/23/2005,3,1,Group Meeting,0,1 +5372,Carl Heiles,"University of California, Berkeley",11/15/2005,Giles Novak,,https://ciera.northwestern.edu/visits/carl-heiles/,1132012800,1132012800,2005,astrophysics-seminars,2006,11/15/2005,11/15/2005,1,0,Group Meeting,0,1 +5371,Knox Long,Space Telescope Science Institute,11/15/2005,Ron Taam,,https://ciera.northwestern.edu/visits/knox-long-2/,1131408000,1131408000,2005,astrophysics-seminars,2006,11/8/2005,11/8/2005,1,0,Astro Faculty,0,1 +5370,Mordecai MacLow,American Museum of Natural History,11/15/2005,Farhad Zadeh,,https://ciera.northwestern.edu/visits/mordecai-maclow/,1130803200,1130803200,2005,astrophysics-seminars,2006,11/1/2005,11/1/2005,1,0,NA,1,1 +5369,Clem Pryke,University of Chicago,10/14/2005,Mel Ulmer,,https://ciera.northwestern.edu/visits/clem-pryke-2/,1129593600,1129593600,2005,astrophysics-seminars,2006,10/18/2005,10/18/2005,1,0,Postdoc,0,1 +3086,Josh Winn,Harvard-Smithsonian Center for Astrophysics,12/10/2018,,,https://ciera.northwestern.edu/visits/josh-winn-2/,1129161600,1129334400,2005,special-astronomy-seminars,2006,10/13/2005,10/15/2005,3,0,Astro Faculty,0,1 +3087,Phil Kaaret,University of Iowa,12/10/2018,,,https://ciera.northwestern.edu/visits/phil-kaaret/,1128902400,1128988800,2005,astrophysics-seminars,2006,10/10/2005,10/11/2005,2,0,Grad Student,0,1 +5368,Martin Houde,University of Western Ontario,10/14/2005,Giles Novak,,https://ciera.northwestern.edu/visits/martin-houde/,1128384000,1128384000,2005,astrophysics-seminars,2006,10/4/2005,10/4/2005,1,1,Postdoc,0,1 +3089,Olek Sadowski,Warsaw University,12/10/2018,,,https://ciera.northwestern.edu/visits/olek-sadowski/,1127088000,1127952000,2005,,2006,9/19/2005,9/29/2005,11,1,Group Meeting,0,1 +3088,Michael Jura,"University of California, Los Angeles",12/10/2018,,,https://ciera.northwestern.edu/visits/michael-jura/,1127692800,1127865600,2005,astrophysics-seminars,2006,9/26/2005,9/28/2005,3,0,Astro Faculty,0,1 +5367,Greg Sloan,Cornell University,9/14/2005,Giles Novak,,https://ciera.northwestern.edu/visits/greg-sloan/,1127347200,1127347200,2005,astrophysics-seminars,2006,9/22/2005,9/22/2005,1,0,Group Meeting,0,1 +3090,Walter Lewin,Massachusetts Institute of Technology,12/10/2018,,,https://ciera.northwestern.edu/visits/walter-lewin/,1126742400,1126915200,2005,,2006,9/15/2005,9/17/2005,3,0,Postdoc,0,1 +3091,Marta Volonteri,University of Cambridge,12/10/2018,,,https://ciera.northwestern.edu/visits/marta-volonteri-3/,1125273600,1125446400,2005,,2005,8/29/2005,8/31/2005,3,1,Group Meeting,1,1 +5377,Rocky Kolb,University of Chicago,5/14/2005,Mel Ulmer,,https://ciera.northwestern.edu/visits/rocky-kolb/,1117497600,1117497600,2004,astrophysics-seminars,2005,5/31/2005,5/31/2005,1,0,Group Meeting,0,1 +3092,Paulo Freire,Arecibo Observatory,12/10/2018,,,https://ciera.northwestern.edu/visits/paulo-freire/,1117065600,1117152000,2004,special-astronomy-seminars,2005,5/26/2005,5/27/2005,2,1,Other Faculty,1,1 +3093,Sera Markoff,Massachusetts Institute of Technology,12/10/2018,,,https://ciera.northwestern.edu/visits/sera-markoff/,1116806400,1116979200,2004,astrophysics-seminars,2005,5/23/2005,5/25/2005,3,0,Postdoc,1,1 +3094,Yuri Levin,Canadian Institute for Theoretical Astrophysics,12/10/2018,,,https://ciera.northwestern.edu/visits/yuri-levin/,1116374400,1116633600,2004,,2005,5/18/2005,5/21/2005,4,1,Astro Faculty,1,1 +5376,Benjamin McCall,University of Illinois at Urbana-Champaign,5/14/2005,Dave Meyer,,https://ciera.northwestern.edu/visits/benjamin-mccall/,1116288000,1116288000,2004,astrophysics-seminars,2005,5/17/2005,5/17/2005,1,0,Postdoc,0,1 +3095,Robert Buchler,Florida University,12/10/2018,,,https://ciera.northwestern.edu/visits/robert-buchler/,1115856000,1116028800,2004,,2005,5/12/2005,5/14/2005,3,0,Astro Faculty,0,1 +3096,Scott Ransom,National Radio Astronomy Observatory,12/10/2018,,,https://ciera.northwestern.edu/visits/scott-ransom/,1115596800,1115769600,2004,astrophysics-seminars,2005,5/9/2005,5/11/2005,3,0,Postdoc,0,1 +5375,David Neufeld,Johns Hopkins University,5/14/2005,Farhad Zadeh,,https://ciera.northwestern.edu/visits/david-neufeld/,1115078400,1115078400,2004,astrophysics-seminars,2005,5/3/2005,5/3/2005,1,0,Astro Faculty,0,1 +3097,Roman Rafikov,Institute for Advanced Study,12/10/2018,,,https://ciera.northwestern.edu/visits/roman-rafikov/,1114560000,1114819200,2004,,2005,4/27/2005,4/30/2005,4,0,Astro Faculty,0,1 +3099,Amaya Moro-Martin,Princeton University,12/10/2018,,,https://ciera.northwestern.edu/visits/amaya-moro-martin/,1114387200,1114646400,2004,astrophysics-seminars,2005,4/25/2005,4/28/2005,4,0,Astro Faculty,0,2 +3100,Eric Ford,"University of California, Berkeley",12/10/2018,,,https://ciera.northwestern.edu/visits/eric-ford-2/,1114387200,1114646400,2004,,2005,4/25/2005,4/28/2005,4,0,Astro Faculty,0,2 +3098,Dimitar Sasselov,Harvard University,12/10/2018,,,https://ciera.northwestern.edu/visits/dimitar-sasselov-2/,1114473600,1114646400,2004,,2005,4/26/2005,4/28/2005,3,0,Astro Faculty,0,1 +3101,Tom Weiler,Vanderbilt University,12/10/2018,,,https://ciera.northwestern.edu/visits/tom-weiler/,1114300800,1114473600,2004,,2005,4/24/2005,4/26/2005,3,0,Staff,1,1 +3102,Barry Barish,California Institute of Technology,12/10/2018,,,https://ciera.northwestern.edu/visits/barry-barish/,1113782400,1114128000,2004,astrophysics-seminars,2005,4/18/2005,4/22/2005,5,0,Astro Faculty,0,1 +3103,Joseph Patterson,Columbia University,12/10/2018,,,https://ciera.northwestern.edu/visits/joseph-patterson/,1113177600,1113264000,2004,astrophysics-seminars,2005,4/11/2005,4/12/2005,2,0,Astro Faculty,0,1 +3104,Carlos Pe�a-Garay,Institute for Advanced Study,12/10/2018,,,https://ciera.northwestern.edu/visits/carlos-pena-garay/,1112745600,1112832000,2004,astrophysics-seminars|special-astronomy-seminars,2005,4/6/2005,4/7/2005,2,0,Astro Faculty,0,1 +5374,Hannah Jang-Condell,Institute for Advanced Study,3/15/2005,Carnegie Institute of Washington,,https://ciera.northwestern.edu/visits/hannah-jang-condell-2/,1112054400,1112054400,2004,astrophysics-seminars,2005,3/29/2005,3/29/2005,1,0,Astro Faculty,0,1 +3106,Rosalba Perna,University of Colorado,12/10/2018,,,https://ciera.northwestern.edu/visits/rosalba-perna-2/,1110758400,1110931200,2004,astrophysics-seminars,2005,3/14/2005,3/16/2005,3,0,Astro Faculty,0,1 +3109,Holger Baumgardt,University of Bonn,12/10/2018,,,https://ciera.northwestern.edu/visits/holger-baumgardt-2/,1110153600,1110758400,2004,special-astronomy-seminars,2005,3/7/2005,3/14/2005,8,1,,1,2 +3110,Andrew Hamilton,University of Colorado,12/10/2018,,,https://ciera.northwestern.edu/visits/andrew-hamilton/,1110153600,1110326400,2004,astrophysics-seminars,2005,3/7/2005,3/9/2005,3,0,Astro Faculty,0,2 +3113,Pablo Laguna,Pennsylvania State University,12/10/2018,,,https://ciera.northwestern.edu/visits/pablo-laguna/,1109203200,1109721600,2004,,2005,2/24/2005,3/2/2005,7,0,,1,2 +3111,Deirdre Shoemaker,Pennsylvania State University,12/10/2018,,,https://ciera.northwestern.edu/visits/deirdre-shoemaker/,1109289600,1109721600,2004,astrophysics-seminars,2005,2/25/2005,3/2/2005,6,0,,1,1 +3115,Chris Belczynski,University of New Mexico,12/10/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski-5/,1108944000,1109635200,2004,,2005,2/21/2005,3/1/2005,9,0,,1,1 +3112,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,12/10/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-6/,1109548800,1109635200,2004,,2005,2/28/2005,3/1/2005,2,0,,1,1 +3114,John Gallagher,University of Wisconsin,12/10/2018,,,https://ciera.northwestern.edu/visits/john-gallagher/,1109203200,1109289600,2004,,2005,2/24/2005,2/25/2005,2,0,,1,2 +5380,Richard Crutcher,University of Illinois at Urbana-Champaign,2/15/2005,Giles Novak,,https://ciera.northwestern.edu/visits/richard-crutcher/,1108425600,1108425600,2004,astrophysics-seminars,2005,2/15/2005,2/15/2005,1,0,,1,1 +5379,Douglas Welch,McMaster University,2/15/2005,Ron Taam,,https://ciera.northwestern.edu/visits/douglas-welch/,1107820800,1107820800,2004,astrophysics-seminars,2005,2/8/2005,2/8/2005,1,1,,1,1 +3116,Bob Benjamin,University of Wisconsin,12/10/2018,,,https://ciera.northwestern.edu/visits/bob-benjamin-2/,1107388800,1107475200,2004,special-astronomy-seminars,2005,2/3/2005,2/4/2005,2,0,Postdoc,0,1 +3117,Bryan Gaensler,Harvard University,12/10/2018,,,https://ciera.northwestern.edu/visits/bryan-gaensler/,1106524800,1106697600,2004,astrophysics-seminars,2005,1/24/2005,1/26/2005,3,0,Postdoc,0,1 +3118,Shiho Kobayashi,Pennsylvania State University,12/10/2018,,,https://ciera.northwestern.edu/visits/shiho-kobayashi/,1105833600,1106438400,2004,special-astronomy-seminars,2005,1/16/2005,1/23/2005,8,0,Astro Faculty,0,1 +5378,Gianfranco Bertone,Fermi National Accelerator Laboratory,1/15/2005,Mel Ulmer,,https://ciera.northwestern.edu/visits/gianfranco-bertone/,1106006400,1106006400,2004,astrophysics-seminars,2005,1/18/2005,1/18/2005,1,0,Postdoc,0,1 +3119,James Lombardi,Vassar College,12/10/2018,,,https://ciera.northwestern.edu/visits/james-lombardi/,1102377600,1102723200,2004,,2005,12/7/2004,12/11/2004,5,0,Astro Faculty,0,2 +3120,Geoff Bower,"University of California, Berkeley",12/10/2018,,,https://ciera.northwestern.edu/visits/geoff-bower/,1102377600,1102636800,2004,special-astronomy-seminars,2005,12/7/2004,12/10/2004,4,0,Group Meeting,0,2 +3121,Ducan Lorimer,University of Manchester,12/10/2018,,,https://ciera.northwestern.edu/visits/ducan-lorimer/,1102118400,1102464000,2004,,2005,12/4/2004,12/8/2004,5,1,Postdoc,0,1 +3122,Daniel Proga,Princeton University,12/10/2018,,,https://ciera.northwestern.edu/visits/daniel-proga/,1101686400,1101859200,2004,astrophysics-seminars,2005,11/29/2004,12/1/2004,3,0,Postdoc,0,1 +3123,Chris Belczynski,University of New Mexico,12/10/2018,,,https://ciera.northwestern.edu/visits/chris-belczynski-6/,1101081600,1101772800,2004,,2005,11/22/2004,11/30/2004,9,0,Astro Faculty,0,1 +5388,Michael Rupen,National Radio Astronomy Observatory,11/15/2004,Farhad Zadeh,,https://ciera.northwestern.edu/visits/michael-rupen/,1101168000,1101168000,2004,astrophysics-seminars,2005,11/23/2004,11/23/2004,1,0,Astro Faculty,0,1 +3124,Ingrid Stairs,University of British Columbia,12/10/2018,,,https://ciera.northwestern.edu/visits/ingrid-stairs/,1100304000,1100908800,2004,astrophysics-seminars,2005,11/13/2004,11/20/2004,8,1,,1,1 +5387,Sara Ellison,University of Victoria,11/15/2004,Dave Meyer,,https://ciera.northwestern.edu/visits/sara-ellison-2/,1099958400,1099958400,2004,astrophysics-seminars,2005,11/9/2004,11/9/2004,1,1,,1,1 +5386,Chris DePree,Agnes Scott College,11/15/2004,Farhad Zadeh,,https://ciera.northwestern.edu/visits/chris-depree/,1099353600,1099353600,2004,astrophysics-seminars,2005,11/2/2004,11/2/2004,1,0,,1,1 +3125,Feng Yuan,Purdue University,12/10/2018,,,https://ciera.northwestern.edu/visits/feng-yuan/,1098835200,1099094400,2004,,2005,10/27/2004,10/30/2004,4,0,,1,1 +3127,Nergis Mavalvala,Massachusetts Institute of Technology,12/10/2018,,,https://ciera.northwestern.edu/visits/nergis-mavalvala/,1098230400,1098489600,2004,special-astronomy-seminars,2005,10/20/2004,10/23/2004,4,0,,1,1 +3126,Brad Hansen,"University of California, Los Angeles",12/10/2018,,,https://ciera.northwestern.edu/visits/brad-hansen/,1098403200,1098489600,2004,,2005,10/22/2004,10/23/2004,2,0,,1,1 +5385,Leslie Looney,University of Illinois,10/15/2004,Giles Novak,,https://ciera.northwestern.edu/visits/leslie-looney-4/,1098144000,1098144000,2004,,2005,10/19/2004,10/19/2004,1,0,,1,1 +3128,Mike Muno,"University of California, Los Angeles",12/10/2018,,,https://ciera.northwestern.edu/visits/mike-muno/,1097452800,1097884800,2004,special-astronomy-seminars,2005,10/11/2004,10/16/2004,6,0,,1,2 +3129,Tom Abel,Stanford University,12/10/2018,,,https://ciera.northwestern.edu/visits/tom-abel-2/,1097452800,1097625600,2004,astrophysics-seminars,2005,10/11/2004,10/13/2004,3,0,,1,2 +5384,Michael Rich,UCLA,10/15/2004,Fred Rasio,,https://ciera.northwestern.edu/visits/michael-rich/,1096934400,1096934400,2004,astrophysics-seminars,2005,10/5/2004,10/5/2004,1,0,Astro Faculty,0,1 +5381,Andrey Kravtsov,University of Chicago,9/14/2004,Mel Ulmer,,https://ciera.northwestern.edu/visits/andrey-kravtsov-2/,1096329600,1096329600,2004,astrophysics-seminars,2005,9/28/2004,9/28/2004,1,0,Postdoc,0,1 +3130,Eric Ford,"University of California, Berkeley",12/10/2018,,,https://ciera.northwestern.edu/visits/eric-ford-3/,1095638400,1096070400,2004,astrophysics-seminars|special-astronomy-seminars,2005,9/20/2004,9/25/2004,6,0,Postdoc,0,1 +3131,Avi Loeb,Harvard University,12/10/2018,,,https://ciera.northwestern.edu/visits/avi-loeb-2/,1093996800,1094342400,2004,astrophysics-seminars,2005,9/1/2004,9/5/2004,5,0,Grad Student,1,1 +3132,Marc Freitag,"Astronomisches Rechen-Institut, Heidelberg University",12/10/2018,,,https://ciera.northwestern.edu/visits/marc-freitag/,1092009600,1094256000,2004,,2004,8/9/2004,9/4/2004,27,1,Grad Student,1,1 +3133,Walter Lewin,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/walter-lewin-2/,1086134400,1086393600,2003,,2004,6/2/2004,6/5/2004,4,0,Postdoc,1,1 +3134,Derek Fox,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/derek-fox/,1085443200,1085875200,2003,special-astronomy-seminars,2004,5/25/2004,5/30/2004,6,0,Astro Faculty,1,1 +3135,David Spergel,Princeton University,12/11/2018,,,https://ciera.northwestern.edu/visits/david-spergel/,1085097600,1085184000,2003,,2004,5/21/2004,5/22/2004,2,0,Astro Faculty,0,1 +3137,Feng Yuan,Purdue University,12/11/2018,,,https://ciera.northwestern.edu/visits/feng-yuan-2/,1085011200,1085097600,2003,special-astronomy-seminars,2004,5/20/2004,5/21/2004,2,0,Postdoc,0,1 +3138,Richard Durisen,"Indiana University, Bloomington",12/11/2018,,,https://ciera.northwestern.edu/visits/richard-durisen/,1084838400,1084924800,2003,astrophysics-seminars,2004,5/18/2004,5/19/2004,2,0,Astro Faculty,0,1 +5392,Scott Dodelson,Fermi National Accelerator Laboratory,5/15/2004,Mel Ulmer,,https://ciera.northwestern.edu/visits/scott-dodelson-2/,1084233600,1084233600,2003,astrophysics-seminars,2004,5/11/2004,5/11/2004,1,0,Postdoc,0,1 +3139,Kinwah Wu,University College of London,12/11/2018,,,https://ciera.northwestern.edu/visits/kinwah-wu/,1083542400,1083888000,2003,special-astronomy-seminars,2004,5/3/2004,5/7/2004,5,1,Group Meeting,1,1 +5391,Arieh Konigl,University of Chicago,5/15/2004,Farhad Zadeh,,https://ciera.northwestern.edu/visits/arieh-konigl/,1083628800,1083628800,2003,astrophysics-seminars,2004,5/4/2004,5/4/2004,1,0,Postdoc,0,1 +3140,Luigi Stella,Astronomical Observatory of Rome,12/11/2018,,,https://ciera.northwestern.edu/visits/luigi-stella/,1083196800,1083283200,2003,astrophysics-seminars|special-astronomy-seminars,2004,4/29/2004,4/30/2004,2,1,Group Meeting,0,1 +5390,Sarah Church,Stanford University,4/15/2004,Giles Novak,,https://ciera.northwestern.edu/visits/sarah-church/,1082419200,1082419200,2003,astrophysics-seminars,2004,4/20/2004,4/20/2004,1,0,Group Meeting,0,1 +3141,Deepto Chakrabarty,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/deepto-chakrabarty/,1081814400,1081900800,2003,astrophysics-seminars,2004,4/13/2004,4/14/2004,2,0,Group Meeting,0,1 +5404,Michael Weinstein,Pennsylvania State University,4/15/2003,Mel Ulmer,,https://ciera.northwestern.edu/visits/michael-weinstein/,1049328000,1080950400,2002,astrophysics-seminars,2003,4/3/2003,4/3/2004,367,0,Astro Faculty,1,1 +5389,Jason Tumlinson,University of Chicago,3/15/2004,Dave Meyer,,https://ciera.northwestern.edu/visits/jason-tumlinson-2/,1080604800,1080604800,2003,astrophysics-seminars,2004,3/30/2004,3/30/2004,1,0,Group Meeting,0,1 +3142,Tomasz Bulik,Nicholas Copernicus Institute,12/11/2018,,,https://ciera.northwestern.edu/visits/tomasz-bulik/,1078790400,1079395200,2003,,2004,3/9/2004,3/16/2004,8,1,Astro Faculty,0,1 +5398,Jason Prochaska,University of California - Santa Cruz,3/15/2004,Dave Meyer,,https://ciera.northwestern.edu/visits/jason-prochaska/,1078185600,1078185600,2003,astrophysics-seminars,2004,3/2/2004,3/2/2004,1,0,Postdoc,0,1 +3143,Carlo Graziani,University of Chicago,12/11/2018,,,https://ciera.northwestern.edu/visits/carlo-graziani/,1077580800,1077667200,2003,astrophysics-seminars,2004,2/24/2004,2/25/2004,2,0,Group Meeting,0,1 +3145,Andrea Ghez,"University of California, Los Angeles",12/11/2018,,,https://ciera.northwestern.edu/visits/andrea-ghez/,1076889600,1077062400,2003,astrophysics-seminars,2004,2/16/2004,2/18/2004,3,0,Group Meeting,0,1 +3146,Giuseppina Fabbiano,Harvard-Smithsonian Center for Astrophysics,12/11/2018,,,https://ciera.northwestern.edu/visits/giuseppina-fabbiano/,1076544000,1076716800,2003,,2004,2/12/2004,2/14/2004,3,0,Group Meeting,0,1 +3147,John Gallagher,University of Wisconsin,12/11/2018,,,https://ciera.northwestern.edu/visits/john-gallagher-2/,1076630400,1076716800,2003,,2004,2/13/2004,2/14/2004,2,0,Group Meeting,0,2 +3149,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,12/11/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-7/,1076630400,1076716800,2003,,2004,2/13/2004,2/14/2004,2,0,Group Meeting,0,2 +5395,Thomas Pannuti,California Institute of Technology,2/15/2004,Farhad Zadeh,,https://ciera.northwestern.edu/visits/thomas-pannuti/,1076371200,1076371200,2003,astrophysics-seminars,2004,2/10/2004,2/10/2004,1,0,Group Meeting,0,1 +3150,Vikram Dwarkadas,University of Chicago,12/11/2018,,,https://ciera.northwestern.edu/visits/vikram-dwarkadas-3/,1075939200,1076025600,2003,special-astronomy-seminars,2004,2/5/2004,2/6/2004,2,0,Group Meeting,0,1 +5394,Ricardo Demarco,Institut d'Astrophysique de Paris,2/15/2004,Mel Ulmer,,https://ciera.northwestern.edu/visits/ricardo-demarco/,1075766400,1075766400,2003,astrophysics-seminars,2004,2/3/2004,2/3/2004,1,1,Group Meeting,0,1 +3151,Andrew Lyne,University of Manchester,12/11/2018,,,https://ciera.northwestern.edu/visits/andrew-lyne/,1074470400,1074643200,2003,astrophysics-seminars,2004,1/19/2004,1/21/2004,3,1,Group Meeting,0,1 +5393,Chris Walker,University of Arizona,1/15/2004,Giles Novak,,https://ciera.northwestern.edu/visits/chris-walker/,1074556800,1074556800,2003,astrophysics-seminars,2004,1/20/2004,1/20/2004,1,0,Astro Faculty,0,1 +3152,Asaf Pe'er,"Weizmann Institute of Science, Israel",12/11/2018,,,https://ciera.northwestern.edu/visits/asaf-peer/,1071014400,1071360000,2003,special-astronomy-seminars,2004,12/10/2003,12/14/2003,5,1,Astro Faculty,0,1 +5403,Caty Pilachowski,"Indiana University, Bloomington",12/15/2003,Ron Taam,,https://ciera.northwestern.edu/visits/caty-pilachowski/,1070928000,1070928000,2003,astrophysics-seminars,2004,12/9/2003,12/9/2003,1,0,Astro Faculty,0,1 +3153,Christopher Deloye,"University of California, Santa Barbara",12/11/2018,,,https://ciera.northwestern.edu/visits/christopher-deloye/,1070409600,1070582400,2003,special-astronomy-seminars,2004,12/3/2003,12/5/2003,3,0,Postdoc,0,1 +3154,Peter Eggleton,University of Cambridge,12/11/2018,,,https://ciera.northwestern.edu/visits/peter-eggleton/,1070236800,1070409600,2003,astrophysics-seminars,2004,12/1/2003,12/3/2003,3,1,Postdoc,0,1 +3157,Marc Freitag,"Astronomisches Rechen-Institut, Heidelberg University",12/11/2018,,,https://ciera.northwestern.edu/visits/marc-freitag-2/,1067126400,1069804800,2003,special-astronomy-seminars,2004,10/26/2003,11/26/2003,32,1,Postdoc,0,1 +3155,Stuart Shapiro,"University of Illinois, Urbana-Champaign",12/11/2018,,,https://ciera.northwestern.edu/visits/stuart-shapiro/,1068681600,1068854400,2003,,2004,11/13/2003,11/15/2003,3,0,Astro Faculty,0,2 +3156,Christopher Kochanek,Ohio State University,12/11/2018,,,https://ciera.northwestern.edu/visits/christopher-kochanek/,1068681600,1068768000,2003,special-astronomy-seminars,2004,11/13/2003,11/14/2003,2,0,Group Meeting,0,2 +5402,Pat Hartigan,Rice University,11/15/2003,Farhad Zadeh,,https://ciera.northwestern.edu/visits/pat-hartigan/,1068508800,1068508800,2003,astrophysics-seminars,2004,11/11/2003,11/11/2003,1,0,Astro Faculty,0,1 +5401,Steven Federman,University of Toledo,11/15/2003,Dave Meyer,,https://ciera.northwestern.edu/visits/steven-federman/,1067904000,1067904000,2003,astrophysics-seminars,2004,11/4/2003,11/4/2003,1,0,Group Meeting,0,1 +5400,Amy Barger,University of Wisconsin - Madison,10/15/2003,Mel Ulmer,,https://ciera.northwestern.edu/visits/amy-barger/,1067299200,1067299200,2003,astrophysics-seminars,2004,10/28/2003,10/28/2003,1,0,Postdoc,0,1 +5399,Joesph Weingertner,George Mason University,10/15/2003,Giles Novak,,https://ciera.northwestern.edu/visits/joesph-weingertner/,1066694400,1066694400,2003,astrophysics-seminars,2004,10/21/2003,10/21/2003,1,0,Astro Faculty,0,1 +3148,John Gallagher,University of Wisconsin,12/11/2018,,,https://ciera.northwestern.edu/visits/john-gallagher-3/,1066003200,1066176000,2003,astrophysics-seminars,2004,10/13/2003,10/15/2003,3,0,Postdoc,0,1 +3158,Tom Maccarone,University of Amsterdam,12/11/2018,,,https://ciera.northwestern.edu/visits/tom-maccarone/,1064793600,1065139200,2003,special-astronomy-seminars,2004,9/29/2003,10/3/2003,5,1,Astro Faculty,0,1 +3163,John Fregeau,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/john-fregeau-3/,1059350400,1061942400,2002,,2003,7/28/2003,8/27/2003,31,0,Postdoc,1,1 +3159,Andrew King,University of Leicester,12/11/2018,,,https://ciera.northwestern.edu/visits/andrew-king/,1055030400,1055289600,2002,special-astronomy-seminars,2003,6/8/2003,6/11/2003,4,1,Astro Faculty,0,2 +3160,Milos Milosavljevic,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/milos-milosavljevic/,1055030400,1055289600,2002,special-astronomy-seminars,2003,6/8/2003,6/11/2003,4,0,Astro Faculty,0,2 +5409,Marc Pound,University of Maryland,5/15/2003,Farhad Zadeh,,https://ciera.northwestern.edu/visits/marc-pound/,1053388800,1053388800,2002,astrophysics-seminars,2003,5/20/2003,5/20/2003,1,0,Astro Faculty,0,1 +3161,Walter Lewin,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/walter-lewin-3/,1052265600,1052524800,2002,astrophysics-seminars,2003,5/7/2003,5/10/2003,4,0,Astro Faculty,0,1 +3174,Marc Freitag,"Astronomisches Rechen-Institut, Heidelberg University",12/11/2018,,,https://ciera.northwestern.edu/visits/marc-freitag-4/,1051574400,1052438400,2002,,2003,4/29/2003,5/9/2003,11,1,Postdoc,0,2 +3162,John Fregeau,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/john-fregeau-2/,1051833600,1052352000,2002,,2003,5/2/2003,5/8/2003,7,0,Postdoc,0,1 +5408,Rebecca Bernstein,University of Michigan,4/15/2003,Mel Ulmer,,https://ciera.northwestern.edu/visits/rebecca-bernstein/,1051574400,1051574400,2002,astrophysics-seminars,2003,4/29/2003,4/29/2003,1,0,Postdoc,0,2 +5407,Paul Ricker,UIUC,4/15/2003,Ron Taam,,https://ciera.northwestern.edu/visits/paul-ricker/,1050969600,1050969600,2002,astrophysics-seminars,2003,4/22/2003,4/22/2003,1,0,Astro Faculty,0,1 +3164,Lyman Page,Princeton University,12/11/2018,,,https://ciera.northwestern.edu/visits/lyman-page/,1050537600,1050624000,2002,,2003,4/17/2003,4/18/2003,2,0,Postdoc,0,2 +5406,Mark Wardle,Macquarie University (Australia),4/15/2003,Farhad Zadeh,,https://ciera.northwestern.edu/visits/mark-wardle-4/,1050537600,1050537600,2002,astrophysics-seminars,2003,4/17/2003,4/17/2003,1,1,Astro Faculty,0,2 +5405,Michael Smutko,University of Chicago,4/15/2003,Mel Ulmer,,https://ciera.northwestern.edu/visits/michael-smutko/,1050364800,1050364800,2002,astrophysics-seminars,2003,4/15/2003,4/15/2003,1,0,Astro Faculty,0,1 +3165,Sanjay Reddy,Los Alamos National Laboratory,12/11/2018,,,https://ciera.northwestern.edu/visits/sanjay-reddy/,1047859200,1048032000,2002,,2003,3/17/2003,3/19/2003,3,0,Astro Faculty,0,1 +5414,Alex Raga,UNAM,3/15/2003,Farhad Zadeh,,https://ciera.northwestern.edu/visits/alex-raga/,1047340800,1047340800,2002,astrophysics-seminars,2003,3/11/2003,3/11/2003,1,1,Postdoc,0,1 +3166,Sterl Phinney,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/sterl-phinney/,1046822400,1047081600,2002,,2003,3/5/2003,3/8/2003,4,0,Astro Faculty,0,1 +5413,Yousaf Butt,Harvard-Smithsonian Center for Astrophysics,3/15/2003,Farhad Zadeh,,https://ciera.northwestern.edu/visits/yousaf-butt/,1046736000,1046736000,2002,astrophysics-seminars,2003,3/4/2003,3/4/2003,1,0,Grad Student,1,1 +5412,Ray Jayawardhana,University of Michigan,2/15/2003,Vicky Kalogera,,https://ciera.northwestern.edu/visits/ray-jayawardhana-2/,1046131200,1046131200,2002,astrophysics-seminars,2003,2/25/2003,2/25/2003,1,0,Postdoc,0,1 +3167,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,12/11/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-8/,1045699200,1046044800,2002,,2003,2/20/2003,2/24/2003,5,0,Astro Faculty,0,1 +5411,Alexander Heger,University of Chicago,2/15/2003,Ron Taam,,https://ciera.northwestern.edu/visits/alexander-heger/,1045526400,1045526400,2002,astrophysics-seminars,2003,2/18/2003,2/18/2003,1,0,Postdoc,0,1 +3168,Philipp Podsiadlowski,Oxford University,12/11/2018,,,https://ciera.northwestern.edu/visits/philipp-podsiadlowski/,1042934400,1043539200,2002,astrophysics-seminars|special-astronomy-seminars,2003,1/19/2003,1/26/2003,8,1,Group Meeting,1,1 +3169,Krishna Rajagopal,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/krishna-rajagopal/,1042675200,1042848000,2002,,2003,1/16/2003,1/18/2003,3,0,Group Meeting,0,1 +5410,Don Cox,University of Wisconsin,1/15/2003,Mel Ulmer,,https://ciera.northwestern.edu/visits/don-cox/,1042502400,1042502400,2002,astrophysics-seminars,2003,1/14/2003,1/14/2003,1,0,Group Meeting,0,1 +3170,Mike Muno,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/mike-muno-2/,1039824000,1040256000,2002,astrophysics-seminars|special-astronomy-seminars,2003,12/14/2002,12/19/2002,6,0,Grad Student,0,1 +5419,Chris Matzner,CITA,11/15/2002,Ron Taam,,https://ciera.northwestern.edu/visits/chris-matzner/,1037664000,1037664000,2002,astrophysics-seminars,2003,11/19/2002,11/19/2002,1,1,Group Meeting,0,1 +5418,You-Hua Chu,UIUC,11/15/2002,Ron Taam,,https://ciera.northwestern.edu/visits/you-hua-chu/,1037059200,1037059200,2002,astrophysics-seminars,2003,11/12/2002,11/12/2002,1,0,Astro Faculty,0,1 +5417,Patrick Slane,Harvard-Smithsonian Center for Astrophysics,10/15/2002,Farhad Zadeh,,https://ciera.northwestern.edu/visits/patrick-slane/,1035849600,1035849600,2002,astrophysics-seminars,2003,10/29/2002,10/29/2002,1,0,Group Meeting,0,1 +5416,Eve Ostriker,University of Maryland,10/15/2002,Giles Novak,,https://ciera.northwestern.edu/visits/eve-ostriker/,1035244800,1035244800,2002,astrophysics-seminars,2003,10/22/2002,10/22/2002,1,0,Group Meeting,0,1 +3173,Marc Freitag,"Astronomisches Rechen-Institut, Heidelberg University",12/11/2018,,,https://ciera.northwestern.edu/visits/marc-freitag-3/,1032480000,1035072000,2002,astrophysics-seminars,2003,9/20/2002,10/20/2002,31,1,Group Meeting,0,1 +3171,Lars Bildsten,"University of California, Santa Barbara",12/11/2018,,,https://ciera.northwestern.edu/visits/lars-bildsten/,1034208000,1034294400,2002,,2003,10/10/2002,10/11/2002,2,0,Group Meeting,0,1 +5415,Peter Timbie,University of Wisconsin,10/15/2002,Mel Ulmer,,https://ciera.northwestern.edu/visits/peter-timbie/,1034035200,1034035200,2002,astrophysics-seminars,2003,10/8/2002,10/8/2002,1,0,Group Meeting,0,1 +3172,Scott Hughes,"University of California, Santa Barbara / Massachusetts Institute of Technology",12/11/2018,,,https://ciera.northwestern.edu/visits/scott-hughes/,1032652800,1032912000,2002,astrophysics-seminars|special-astronomy-seminars,2003,9/22/2002,9/25/2002,4,0,Group Meeting,0,1 +3179,John Fregeau,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/john-fregeau-5/,1021852800,1024185600,2001,special-astronomy-seminars,2002,5/20/2002,6/16/2002,28,0,Group Meeting,1,1 +5421,Roger Dixon,Fermi National Accelerator Laboratory,6/15/2002,Mel Ulmer,,https://ciera.northwestern.edu/visits/roger-dixon/,1023321600,1023321600,2001,astrophysics-seminars,2002,6/6/2002,6/6/2002,1,0,Group Meeting,0,1 +3175,Norm Murray,University of Toronto,12/11/2018,,,https://ciera.northwestern.edu/visits/norm-murray-2/,1023148800,1023235200,2001,,2002,6/4/2002,6/5/2002,2,1,Astro Faculty,1,1 +3176,Eric Ford,Princeton University,12/11/2018,,,https://ciera.northwestern.edu/visits/eric-ford-4/,1022716800,1023062400,2001,special-astronomy-seminars,2002,5/30/2002,6/3/2002,5,0,Group Meeting,0,2 +3204,Eugene Chiang,"University of California, Berkeley",12/11/2018,,,https://ciera.northwestern.edu/visits/eugene-chiang-3/,1022716800,1022803200,2001,astrophysics-seminars,2002,5/30/2002,5/31/2002,2,0,Postdoc,1,2 +3177,Roger Blandford,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/roger-blandford/,1022630400,1022716800,2001,astrophysics-seminars,2002,5/29/2002,5/30/2002,2,0,Group Meeting,0,1 +3180,Marc Freitag,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/marc-freitag-5/,1021680000,1021939200,2001,special-astronomy-seminars,2002,5/18/2002,5/21/2002,4,0,Group Meeting,0,1 +3181,Renu Malhotra,University of Arizona,12/11/2018,,,https://ciera.northwestern.edu/visits/renu-malhotra/,1021507200,1021680000,2001,astrophysics-seminars,2002,5/16/2002,5/18/2002,3,0,Group Meeting,0,1 +3182,Duncan Lorimer,U. Manchester,12/11/2018,,,https://ciera.northwestern.edu/visits/duncan-lorimer-2/,1021075200,1021334400,2001,special-astronomy-seminars,2002,5/11/2002,5/14/2002,4,1,Group Meeting,0,1 +3183,Paul Steinhardt,Princeton University,12/11/2018,,,https://ciera.northwestern.edu/visits/paul-steinhardt/,1020902400,1020988800,2001,,2002,5/9/2002,5/10/2002,2,0,Group Meeting,0,2 +5420,Frank Marshall,NASA Goddard Space Flight Center,5/15/2002,Farhad Zadeh,,https://ciera.northwestern.edu/visits/frank-marshall/,1020902400,1020902400,2001,astrophysics-seminars,2002,5/9/2002,5/9/2002,1,0,Group Meeting,0,2 +3184,Ronald Webbink,UIUC,12/11/2018,,,https://ciera.northwestern.edu/visits/ronald-webbink/,1020211200,1020384000,2001,astrophysics-seminars,2002,5/1/2002,5/3/2002,3,0,Astro Faculty,0,1 +3185,David Merritt,Rutgers University,12/11/2018,,,https://ciera.northwestern.edu/visits/david-merritt-2/,1019088000,1019260800,2001,astrophysics-seminars,2002,4/18/2002,4/20/2002,3,0,Group Meeting,0,1 +3188,Tomasz Bulik,N. Copernicus Inst.,12/11/2018,,,https://ciera.northwestern.edu/visits/tomasz-bulik-2/,1018224000,1018828800,2001,,2002,4/8/2002,4/15/2002,8,1,Astro Faculty,0,1 +3186,Douglas Heggie,Edinburgh,12/11/2018,,,https://ciera.northwestern.edu/visits/douglas-heggie-2/,1018310400,1018656000,2001,astrophysics-seminars,2002,4/9/2002,4/13/2002,5,1,Astro Faculty,0,2 +3187,Bernard Schutz,Albert Einstein Institute,12/11/2018,,,https://ciera.northwestern.edu/visits/bernard-schutz/,1018310400,1018396800,2001,,2002,4/9/2002,4/10/2002,2,1,Group Meeting,0,2 +5425,Donald Lubowich,Hofstra University and American Institute of Physics,3/15/2002,,,https://ciera.northwestern.edu/visits/donald-lubowich/,1017273600,1017273600,2001,astrophysics-seminars,2002,3/28/2002,3/28/2002,1,0,Astro Faculty,0,1 +5423,Derck Massa,NASA Goddard Space Flight Center,3/15/2002,Jim Lauroesch,,https://ciera.northwestern.edu/visits/derck-massa/,1016064000,1016064000,2001,astrophysics-seminars,2002,3/14/2002,3/14/2002,1,0,,1,2 +5424,Maha Ashour-Abdalla,UCLA,3/15/2002,Giles Novak,,https://ciera.northwestern.edu/visits/maha-ashour-abdalla/,1016064000,1016064000,2001,astrophysics-seminars,2002,3/14/2002,3/14/2002,1,0,Astro Faculty,0,2 +3189,Phil Armitage,U. Colorado,12/11/2018,,,https://ciera.northwestern.edu/visits/phil-armitage/,1015459200,1015545600,2001,astrophysics-seminars,2002,3/7/2002,3/8/2002,2,0,,1,1 +3191,Andreas Zezas,Harvard-Smithsonian Center for Astrophysics,12/11/2018,,,https://ciera.northwestern.edu/visits/andreas-zezas-9/,1015027200,1015372800,2001,special-astronomy-seminars,2002,3/2/2002,3/6/2002,5,0,,1,1 +3192,Peter Goldreich,California Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/peter-goldreich/,1014854400,1015027200,2001,,2002,2/28/2002,3/2/2002,3,0,,1,1 +3194,Josh Grindlay,Harvard University,12/11/2018,,,https://ciera.northwestern.edu/visits/josh-grindlay/,1014768000,1014854400,2001,astrophysics-seminars,2002,2/27/2002,2/28/2002,2,0,,1,1 +3178,John Fregeau,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/john-fregeau-4/,1014336000,1014681600,2001,,2002,2/22/2002,2/26/2002,5,0,,1,5 +3195,Alison Sills,McMaster University,12/11/2018,,,https://ciera.northwestern.edu/visits/alison-sills-2/,1014336000,1014681600,2001,,2002,2/22/2002,2/26/2002,5,1,,1,5 +3196,Steve McMillan,Drexel University,12/11/2018,,,https://ciera.northwestern.edu/visits/steve-mcmillan/,1014336000,1014681600,2001,,2002,2/22/2002,2/26/2002,5,0,,1,5 +3197,Kriten Joshi,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/kriten-joshi/,1014336000,1014681600,2001,,2002,2/22/2002,2/26/2002,5,0,,1,5 +3198,Brad Hansen,"University of California, Los Angeles",12/11/2018,,,https://ciera.northwestern.edu/visits/brad-hansen-2/,1014336000,1014681600,2001,,2002,2/22/2002,2/26/2002,5,0,,1,5 +3199,Michael Eracleous,Pennsylvania State University,12/11/2018,,,https://ciera.northwestern.edu/visits/michael-eracleous/,1014163200,1014336000,2001,,2002,2/20/2002,2/22/2002,3,0,,1,1 +5430,Bill Watson,UIUC,12/15/2001,Farhad Zadeh,,https://ciera.northwestern.edu/visits/bill-watson/,1008201600,1008201600,2001,astrophysics-seminars,2002,12/13/2001,12/13/2001,1,0,,1,1 +3200,Adrienne Cool,San Francisco State University,12/11/2018,,,https://ciera.northwestern.edu/visits/adrienne-cool-2/,1007510400,1007596800,2001,astrophysics-seminars,2002,12/5/2001,12/6/2001,2,0,,1,1 +5429,Ned Wright,UCLA,11/15/2001,Dave Meyer,,https://ciera.northwestern.edu/visits/ned-wright/,1006905600,1006905600,2001,astrophysics-seminars,2002,11/28/2001,11/28/2001,1,0,,1,1 +3201,Fernando Camilo,Columbia University,12/11/2018,,,https://ciera.northwestern.edu/visits/fernando-camilo/,1005955200,1006214400,2001,,2002,11/17/2001,11/20/2001,4,0,,1,1 +5428,Brad Peterson,Ohio State University,11/15/2001,Mel Ulmer,,https://ciera.northwestern.edu/visits/brad-peterson/,1005177600,1005177600,2001,astrophysics-seminars,2002,11/8/2001,11/8/2001,1,0,,1,1 +3203,Eugene Chiang,"University of California, Berkeley",12/11/2018,,,https://ciera.northwestern.edu/visits/eugene-chiang-2/,1004572800,1004745600,2001,,2002,11/1/2001,11/3/2001,3,0,,1,2 +3202,Charles Bailyn,Yale University,12/11/2018,,,https://ciera.northwestern.edu/visits/charles-bailyn-3/,1004572800,1004659200,2001,,2002,11/1/2001,11/2/2001,2,0,,1,2 +3205,Simon Portegies Zwart,Massachusetts Institute of Technology,12/11/2018,,,https://ciera.northwestern.edu/visits/simon-portegies-zwart/,1004054400,1004486400,2001,,2002,10/26/2001,10/31/2001,6,0,,1,1 +3207,James Lombardi,Vassar College,12/11/2018,,,https://ciera.northwestern.edu/visits/james-lombardi-2/,1003104000,1003881600,2001,astrophysics-seminars,2002,10/15/2001,10/24/2001,10,0,,1,1 +5427,Fred Baganoff,Massachusetts Institute of Technology,10/15/2001,Farhad Zadeh,,https://ciera.northwestern.edu/visits/fred-baganoff/,1002758400,1002758400,2001,astrophysics-seminars,2002,10/11/2001,10/11/2001,1,0,,1,1 +5426,David Bennett,Notre Dame,9/15/2001,Ron Taam,,https://ciera.northwestern.edu/visits/david-bennett/,1001548800,1001548800,2001,astrophysics-seminars,2002,9/27/2001,9/27/2001,1,0,,1,1 +,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,, diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d38915f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +numpy +pandas +openpyxl +matplotlib +seaborn +sympy +nbconvert +nbformat +PyYAML +streamlit +pytest +ipython +jupyter +jupyterlab +jupyter_contrib_nbextensions +root-dash diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7d41b50 --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +'''This is the install script used by pip to install the package, +i.e. enable your Python version to find and import the package. +Setup can accept a wide variety of options, but for the purpose +of installing via "pip install -e .", the only required options +are the name of the package and the packages to be included (`install_requires`). + +**If you plan on running your dashboard on streamlit.io/cloud, +you must also include the necessary packages in the `requirements.txt` file.** +''' +import setuptools + +setuptools.setup( + name="press_dash_lib", + version="0.1", + author="CIERA (Zach Hafen-Saavedra)", + author_email="ciera@northwestern.edu", + description="Dashboard for exploring and presenting press data related to CIERA.", + long_description_content_type="text/markdown", + url="https://github.com/CIERA-Northwestern/press-dash", + packages=setuptools.find_packages(), + install_requires = [ + 'numpy', + 'pandas', + 'openpyxl', + 'matplotlib', + 'seaborn', + 'nbconvert', + 'nbformat', + 'PyYAML', + 'streamlit', + 'pytest', + 'jupyterlab', + 'root-dash', + ], +) diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/config.yml b/src/config.yml new file mode 100644 index 0000000..a8b6ae2 --- /dev/null +++ b/src/config.yml @@ -0,0 +1,81 @@ +############################################################################### +# Options +############################################################################### + + +# Location of the data relative to the config +data_dir: ../data +# Location of the figures relative to the config +figure_dir: ../data/figures + +# What day of the year to start on. +# Default is September 1st, start of the Northwestern Financial Year +start_of_year: September 1 + +# Aesthetic options +page_title: 'Visit Data' +# Seaborn color palette to use. More options at https://seaborn.pydata.org/tutorial/color_palettes.html +color_palette: deep + +############################################################################### +# Advanced Options +############################################################################### +# The below options must be modified to adapt the dashboard to your own purposes, +# but most users of the completed dashboard will not need to modify them. + +# Filetree options +input_dirname: raw_data +output_dirname: processed_data +website_data_file_pattern: Visits_Report-*.csv +press_office_data_file_pattern: press_office*.xls* +combined_filename: press.csv + +# What to group by +# If you add additional categorical columns to the data, you can specify them here and they will be added to the dashboard. +groupings: + - Host Type + - Origin(International/Domestic) + +## Column Classifications +# The anything that's in a given grouping can be analyzed similarly. +primary_id_column: index +id_columns: # Unique identifiers + - id + - Visitor Institution + - Name +numerical_columns: # Numeric columns that can be summed + - Visiting Days +date_columns: # Dates + - Date +x_columns: # Data will be binned by these along the x-axis + - Year(Flexible) # For example, a value of 2019 would be grouped into the 2019-2020 financial year + - Adm +categorical_columns: # Categorical columns that can be grouped, e.g. all Press Types=="Science" articles + - Host Type + - Origin(International/Domestic) +text_columns: # Text columns that can be searched + - id + - Host + +## Custom Categories +# Use boolean logic to define categories. +# In addition to boolean logic, preceeding the definition with 'only' will restrict the category to only the tags that show up in the proceeding definition. +# Any categories not defined here will be left as is if they are the sole tag, or added to an 'Other' category if they are one of multiple tags. +new_categories: + # Research topics are defined as falling into one of three main categories: Exploding & Dead Stars, Astrophysical Populations, and Exoplanets & the Solar System. + Event Type Tags: + 'R1': "'Public Outreach' | 'Future Leaders' | 'Education'" + 'Internal': "'Development/Strategic' | 'Community Events'" + 'Research': "'Academic Seminars' | 'Conferences' | 'Collab/Group Meetings'" + # Research topics are defined as falling into one of three main categories: Exploding & Dead Stars, Astrophysical Populations, and Exoplanets & the Solar System. + Research Topic: + 'Compact Objects': "only ('Life and Death of Stars' | 'Gravitational Waves & Multi-Messenger Astronomy' | 'Black Holes & Dead Stars')" + 'Cosmological Populations': "only ('Galaxies & Cosmology' | 'Stellar Dynamics & Stellar Populations')" + # Article categories are grouped into research, outreach, and achievements & events, with research and outreach categorization superseeding achievements & events. + Category: + 'Research': "'Science' | 'Data Science & Computing' | 'Interdisciplinary'" + 'Outreach': "'Education' | 'Outreach' | 'Future Leaders'" + + # You can use the same source category for multiple new categories by placing the source column in brackets. + #"Multi-messenger Astro vs everything else [Research Topic]": + # 'GW': "'Gravitational Waves & Multi-Messenger Astronomy'" # Anything tagged as GW will be included in this category diff --git a/src/dashboard.py b/src/dashboard.py new file mode 100644 index 0000000..9fc2615 --- /dev/null +++ b/src/dashboard.py @@ -0,0 +1,20 @@ +# Get the config file. +import os +config_dir = os.path.dirname(__file__) +config_fn = 'config.yml' + +# Ensure the repository is added to the path +# This should typically be accessible post pip-installation +# But we add it to the path because when hosted on the web +# that doesn't work necessarily. +import sys +root_dir = os.path.dirname(os.path.dirname(__file__)) +if root_dir not in sys.path: + sys.path.append(root_dir) + +# Call the main function. +# Change the import here to whatever page you want to load. +import importlib +from visit_dash_lib.pages import base_page +importlib.reload(base_page) +base_page.main(os.path.join(config_dir, config_fn)) diff --git a/src/pipeline.sh b/src/pipeline.sh new file mode 100644 index 0000000..8ac71d9 --- /dev/null +++ b/src/pipeline.sh @@ -0,0 +1,105 @@ +#!/usr/bin/env bash + +# Config filepath is provided on the command line +CONFIG_FP=$1 + +# User notebooks +# Relative paths, relative to the source directory +USER_NBS=(transform.ipynb) + +# How to execute the notebooks +CONVERT_THEN_EXEC=true + +############################################################################### +# Probably don't touch below unless you know what you're doing +############################################################################### +echo "Starting pipeline..." +echo + +# Get the current directory +SRC_DIR=$(dirname $(realpath $0)) +LOGS_DIR=$(dirname $SRC_DIR)/logs +echo "Source directory: $SRC_DIR" +echo "Logs directory: $LOGS_DIR" +mkdir -p $LOGS_DIR +TIMESTAMP=$(date +"%Y-%m-%d_%H-%M") +echo "Timestamp for logs: $TIMESTAMP" + +# Get the config location from the user +CONFIG_DIR=$(dirname $(realpath $CONFIG_FP)) +cd $CONFIG_DIR +echo "Config/working directory: $CONFIG_DIR" +echo + +echo "User notebooks:" ${USER_NBS[@]} + +# Convert and execute the notebooks +if $CONVERT_THEN_EXEC; then + echo "Converting and executing notebooks..." + for USER_NB in ${USER_NBS[@]}; do + echo " $USER_NB" + + # What is the basename of the notebook itself? + USER_NB_BASENAME=$(basename $USER_NB) + # What is the basename of the script that will be executed? + SCRIPT_FN=${USER_NB_BASENAME/.ipynb/.$TIMESTAMP} + + # Convert to a python script + (jupyter nbconvert \ + --to script \ + $(realpath $SRC_DIR/$USER_NB) \ + --output=$SCRIPT_FN\ + --output-dir=$LOGS_DIR) \ + > $LOGS_DIR/convert.$SCRIPT_FN.out \ + 2> $LOGS_DIR/convert.$SCRIPT_FN.err + + # Save the python script + python $LOGS_DIR/$SCRIPT_FN.py \ + > $LOGS_DIR/execute.$SCRIPT_FN.out \ + 2> $LOGS_DIR/execute.$SCRIPT_FN.err + echo + done +# Execeute without converting +else + echo "Executing notebooks..." + + # Clean up any temporary notebooks + # (NBs created as a workaround to issues specifying execution directory) + cleanup() { + if ["$CONFIG_DIR" != "$SRC_DIR"]; then + echo 'Cleaning up temporary notebooks...' + for USER_NB in ${USER_NBS[@]}; do + SCRIPT_FN=${USER_NB_BASENAME/.ipynb/.$TIMESTAMP} + rm -f $CONFIG_DIR/$SCRIPT_FN + done + fi + } + trap cleanup EXIT + + for USER_NB in ${USER_NBS[@]}; do + + # What is the basename of the notebook itself? + USER_NB_BASENAME=$(basename $USER_NB) + # What is the basename of the script that will be executed? + SCRIPT_FN=${USER_NB_BASENAME/.ipynb/.$TIMESTAMP} + + # Copy in the notebook. This needs to be done because there's not + # a good way to change directory for nbconvert execute. + echo "Considering copying..." + COPIED_NB_FP=$CONFIG_DIR/$SCRIPT_FN + if ["$CONFIG_DIR" != "$SRC_DIR"]; then + echo "Copying $USER_NB to $COPIED_NB_FP" + cp $SRC_DIR/$USER_NB $COPIED_NB_FP + fi + + (jupyter nbconvert \ + --to notebook \ + --execute $COPIED_NB_FP \ + --output=$SCRIPT_FN \ + --output-dir=$LOGS_DIR) \ + > $LOGS_DIR/execute.$SCRIPT_FN.out \ + 2> $LOGS_DIR/execute.$SCRIPT_FN.err + done +fi + +echo "Pipeline finished!" \ No newline at end of file diff --git a/src/transform.ipynb b/src/transform.ipynb new file mode 100644 index 0000000..d77b3cd --- /dev/null +++ b/src/transform.ipynb @@ -0,0 +1,416 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ff538404-b421-40aa-9b5f-e41edb95913c", + "metadata": {}, + "source": [ + "# Setup" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "4d435dd3-4106-42c3-a445-72802ca318e0", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import os\n", + "import glob\n", + "import pandas as pd\n", + "import sys\n", + "import yaml" + ] + }, + { + "cell_type": "markdown", + "id": "bcbea391-a730-4ad2-ad8b-859eb59ce5b2", + "metadata": {}, + "source": [ + "## Process Config" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "4cb5a32f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Starting transformation. Working directory: /Users/zhafen/repos/root-dash/src\n" + ] + } + ], + "source": [ + "print('Starting transformation. Working directory: {}'.format(os.getcwd()))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "5137a668-a624-4dd2-96ca-6f9ee5f1c153", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "with open('./config.yml', \"r\") as f:\n", + " config = yaml.load(f, Loader=yaml.FullLoader)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "c8b3189a-b86f-4353-897c-b1325696bed0", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "input_dir = os.path.join(config['data_dir'], config['input_dirname'])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "459db3e7", + "metadata": {}, + "outputs": [], + "source": [ + "def get_fp_of_most_recent_file(pattern):\n", + " fps = glob.glob(pattern)\n", + " ind_selected = np.argmax([os.path.getctime(_) for _ in fps])\n", + " return fps[ind_selected]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "142cee90-de7b-45db-b275-7af5dc20a3a7", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "data_fp = os.path.join(input_dir, config['website_data_file_pattern'])\n", + "data_fp = get_fp_of_most_recent_file(data_fp)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "6e1b5c24-5e1a-4417-a621-c1817d767f5c", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "press_office_data_fp = os.path.join(input_dir, config['press_office_data_file_pattern'])\n", + "press_office_data_fp = get_fp_of_most_recent_file(press_office_data_fp)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "2cd49f1d-54b8-4f7e-b7bb-f43f4f6ab888", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "output_dir = os.path.join(config['data_dir'], config['output_dirname'])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "c2f538b6-c4bc-4a88-b7de-c0129b7e9ace", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "grouping_labels = [group_by_i.lower().replace(' ', '_') for group_by_i in config['groupings']]" + ] + }, + { + "cell_type": "markdown", + "id": "4be9cf09-9684-430c-9bf5-464ba793624b", + "metadata": {}, + "source": [ + "# Transform Website Data" + ] + }, + { + "cell_type": "markdown", + "id": "8ea3da43-7a62-4d0d-ab04-eee9ad78ac8d", + "metadata": {}, + "source": [ + "## Preprocessing" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "587a9b88-28a4-4d6d-833a-90bdaae2df28", + "metadata": {}, + "outputs": [], + "source": [ + "# Load data\n", + "df = pd.read_csv(data_fp, parse_dates=['Date',])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "ccc050f5-70f0-4012-9959-8622ec67a6f5", + "metadata": {}, + "outputs": [], + "source": [ + "# Drop drafts\n", + "df.drop(df.index[df['Date'].dt.year == 1970], axis='rows', inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "51580882-d883-4dd3-930b-38b749278f91", + "metadata": {}, + "outputs": [], + "source": [ + "# Drop weird articles---ancient ones w/o a title or press type\n", + "df.dropna(axis='rows', how='any', subset=['Title', 'Press Types',], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "3a1b57ea-e832-4e06-8ba0-a78988abdd12", + "metadata": {}, + "outputs": [], + "source": [ + "# Get rid of HTML ampersands\n", + "for str_column in ['Title', 'Research Topics', 'Categories']:\n", + " df[str_column] = df[str_column].str.replace('&', '&')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "147a4759-7c0d-4245-ba4d-9ea617b6f034", + "metadata": {}, + "outputs": [], + "source": [ + "# Get date bins\n", + "start_year = df['Date'].min().year - 1\n", + "end_year = df['Date'].max().year + 1\n", + "date_bins = pd.date_range(\n", + " '{} {}'.format(config['start_of_year'], start_year),\n", + " pd.Timestamp.now() + pd.offsets.DateOffset(years=1),\n", + " freq = pd.offsets.DateOffset(years=1),\n", + ")\n", + "date_bin_labels = date_bins.year[:-1]" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "c9cb87f2-e45d-45a3-a212-e34a5c3eb2d3", + "metadata": {}, + "outputs": [], + "source": [ + "# Add the year published (using the above start date)\n", + "df['Year'] = pd.cut(df['Date'], date_bins, labels=date_bin_labels) " + ] + }, + { + "cell_type": "markdown", + "id": "548121b5-bdc8-4ad8-af5c-20667af1cc2b", + "metadata": {}, + "source": [ + "## Grouped Counts" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "c347b980-88c3-4642-a9d1-04f428f94f30", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saved counts grouped by Research Topics at: ../data/processed_data/counts/counts.research_topics.csv\n", + "Saved counts grouped by Press Types at: ../data/processed_data/counts/counts.press_types.csv\n", + "Saved counts grouped by Categories at: ../data/processed_data/counts/counts.categories.csv\n" + ] + } + ], + "source": [ + "for i, group_by_i in enumerate(config['groupings']):\n", + " df_i = df.copy()\n", + "\n", + " # Explode and group\n", + " df_i[group_by_i] = df_i[group_by_i].str.split('|')\n", + " df_i = df_i.explode(group_by_i)\n", + "\n", + " # Get counts\n", + " counts = df_i.pivot_table(index='Year', columns=group_by_i, values='id', aggfunc='count')\n", + " \n", + " # Save\n", + " output_fn = 'counts.{}.csv'.format(grouping_labels[i])\n", + " counts_output_dir = os.path.join(output_dir, 'counts')\n", + " os.makedirs(counts_output_dir, exist_ok=True)\n", + " output_fp = os.path.join(counts_output_dir, output_fn)\n", + " counts.to_csv(output_fp,)\n", + " print('Saved counts grouped by {} at: {}'.format(group_by_i, output_fp))" + ] + }, + { + "cell_type": "markdown", + "id": "2beddf9a-4567-4036-aa3d-6dbdc6b80d03", + "metadata": {}, + "source": [ + "# Coordinate Manual Data" + ] + }, + { + "cell_type": "markdown", + "id": "5f0b3b62-e0ff-4d3d-bd03-39faf92929d2", + "metadata": {}, + "source": [ + "## Original Format" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "5d1c5970-6ef7-437d-afdc-5e298bd93131", + "metadata": {}, + "outputs": [], + "source": [ + "# Load press data\n", + "press_df = pd.read_excel(press_office_data_fp)\n", + "press_df.set_index('id', inplace=True)\n", + "if 'Title (optional)' in press_df.columns:\n", + " press_df.drop('Title (optional)', axis='columns', inplace=True)\n", + "for column in ['Press Mentions', 'People Reached']:\n", + " press_df[column] = press_df[column].astype('Int64')" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "abb70427-a7e0-4b6e-992f-3bb92b1c2d3f", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Combine with website data\n", + "combined_df = df.set_index('id').join(press_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "816c00d0-4964-489d-8b3b-c920e6515c6e", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saved full press data at: ../data/processed_data/press.csv\n" + ] + } + ], + "source": [ + "# Save combined data\n", + "output_fp = os.path.join(output_dir, config['combined_filename'])\n", + "combined_df.to_csv(output_fp)\n", + "print('Saved full press data at: {}'.format(output_fp))" + ] + }, + { + "cell_type": "markdown", + "id": "f0e41519-60c9-4477-9db0-12ff89700c95", + "metadata": {}, + "source": [ + "## Exploded Format\n", + "(Alternative that parses the categories.)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "0de2be4d-8d61-4f41-bfba-ec91afe946e1", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Explode and group\n", + "exploded_df = combined_df.copy()\n", + "for group_by_i in config['groupings']:\n", + " exploded_df[group_by_i] = exploded_df[group_by_i].str.split('|')\n", + " exploded_df = exploded_df.explode(group_by_i)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "cf464cfd-55a7-4d89-856a-bab00347afe0", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Saved expanded press data at: ../data/processed_data/press.exploded.csv\n" + ] + } + ], + "source": [ + "# Save\n", + "base, ext = os.path.splitext(config['combined_filename'])\n", + "exploded_filename = '{}.exploded{}'.format(base, ext)\n", + "output_fp = os.path.join(output_dir, exploded_filename)\n", + "exploded_df.to_csv(output_fp)\n", + "print('Saved expanded press data at: {}'.format(output_fp))" + ] + } +], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/config.yml b/test/config.yml new file mode 100644 index 0000000..fe819a7 --- /dev/null +++ b/test/config.yml @@ -0,0 +1,84 @@ +############################################################################### +# Options +############################################################################### + + +# Location of the data relative to the config +data_dir: ../data +# Location of the figures relative to the config +figure_dir: ../data/figures + +# What day of the year to start on. +# Default is September 1st, start of the Northwestern Financial Year +start_of_year: September 1 + +# Aesthetic options +page_title: 'Press Data' +# Seaborn color palette to use. More options at https://seaborn.pydata.org/tutorial/color_palettes.html +color_palette: deep + +############################################################################### +# Advanced Options +############################################################################### +# The below options must be modified to adapt the dashboard to your own purposes, +# but most users of the completed dashboard will not need to modify them. + +# Filetree options +input_dirname: raw_data +output_dirname: processed_data +website_data_file_pattern: News_Report*.csv +press_office_data_file_pattern: press_office*.xls* +combined_filename: press.csv + +# What to group by +# If you add additional categorical columns to the data, you can specify them here and they will be added to the dashboard. +groupings: + - Research Topics + - Press Types + - Categories + +## Column Classifications +# The anything that's in a given grouping can be analyzed similarly. +primary_id_column: index +id_columns: # Unique identifiers + - id + - Title +numerical_columns: # Numeric columns that can be summed + - Press Mentions + - People Reached +date_columns: # Dates + - Date +x_columns: # Data will be binned by these along the x-axis + - Year # For example, a value of 2019 would be grouped into the 2019-2020 financial year +categorical_columns: # Categorical columns that can be grouped, e.g. all Press Types=="Science" articles + - Research Topics + - Press Types + - Categories +text_columns: # Text columns that can be searched + - Title + - Permalink + - Top Outlets + - Notes + +## Custom Categories +# Use boolean logic to define categories. +# In addition to boolean logic, preceeding the definition with 'only' will restrict the category to only the tags that show up in the proceeding definition. +# Any categories not defined here will be left as is if they are the sole tag, or added to an 'Other' category if they are one of multiple tags. +new_categories: + # Press types are defined hierarchicaly. + Press Types: + 'External Press (Inclusive)': "'External Press'" # Anything tagged as External Press will be included in this category + 'Northwestern Press (Inclusive)': "'Northwestern Press' & (not 'External Press')" # Anything tagged with Northwestern Press but not External Press will be included in this category + # CIERA press is left undefined, so it defaults to showing up as usual, provided it is not also tagged with Northwestern Press or External Press. + # Research topics are defined as falling into one of three main categories: Exploding & Dead Stars, Astrophysical Populations, and Exoplanets & the Solar System. + Research Topics: + 'Compact Objects': "only ('Life & Death of Stars' | 'Gravitational Waves & Multi-Messenger Astronomy' | 'Black Holes & Dead Stars')" + 'Cosmological Populations': "only ('Galaxies & Cosmology' | 'Stellar Dynamics & Stellar Populations')" + # Article categories are grouped into research, outreach, and achievements & events, with research and outreach categorization superseeding achievements & events. + Categories: + 'Research': "('Science' | 'Data Science & Computing') & (not ('Education' | 'Outreach'))" + 'Outreach': "('Education' | 'Outreach') & (not ('Science' | 'Data Science & Computing'))" + 'Achievements & Events': "only ('Achievement' | 'Event' | 'Interdisciplinary')" + # You can use the same source category for multiple new categories by placing the source column in brackets. + "Multi-messenger Astro vs everything else [Research Topics]": + 'GW': "'Gravitational Waves & Multi-Messenger Astronomy'" # Anything tagged as GW will be included in this category diff --git a/test/config_grants.yml b/test/config_grants.yml new file mode 100644 index 0000000..b1a14e0 --- /dev/null +++ b/test/config_grants.yml @@ -0,0 +1,106 @@ +############################################################################### +# Options +############################################################################### + +# Title of the page +page_title: CIERA Grants + +# Location of the data relative to the config +data_dir: . +input_dirname: raw_data +output_dirname: processed_data +data_file_pattern: CIERA_awards_data*.csv + +# What day of the year to start on. +# Default is September 1st, start of the Northwestern Financial Year +year_start: September 1 + +# Cumulative or yearly +cumulative: False + +# Where to place the filters on the page +place_filters_in_sidebar: False + +# Seaborn color palette to use. More options at https://seaborn.pydata.org/tutorial/color_palettes.html +color_palette: deep + +primary_id_column: CERES Award ID + +id_columns: + - CERES Award ID + - Investigator Employee ID + - Subaward ID + - Allocation ID + - Award Prime Sponsor ID + - Prime Sponsor Name + - Award Direct Sponsor ID + - Direct Sponsor Name + - Award Current Dept ID + - Award Current Dept Name + - Award Dept ID + - Award Dept Name + - Investigator HR Dept Name + - Award Current PI HR Dept Name + - Award Current PI Employee ID +numerical_columns: + - Allocation Total Sum Amount + - Allocation Authorized Total Amount + - Allocation Anticipated Total Amount + - Allocation Authorized Direct Amount + - Allocation Anticipated Direct Amount + - Allocation Authorized F&A Amount + - Allocation Anticipated F&A Amount + - Cost Share Amount +x_columns: + - Overall Award Reporting Fiscal Year (yyyy) + - Award Start Fiscal Year (yyyy) + - Award End Fiscal Year (yyyy) +categorical_columns: + # - Investigator Primary Function (myHR) + # - Investigator Primary Appt Job Title (myHR) + # - Investigator Academic Rank (myHR) + # - Investigator Gender (myHR) + - Award Dept Name + - Award Dept ID + - Prime Sponsor Name + - Award Prime Sponsor ID + - Award Direct Sponsor ID + - Direct Sponsor Name + - Award Current Dept ID + - Award Current Dept Name + - Investigator HR Dept Name + - Award Current PI HR Dept Name + - Award Current PI Gender (myHR) + # - Award Current PI Primary Appt Job Title (myHR) + # - Award Current PI Primary Function (myHR) + # - Award Current PI Academic Rank (myHR) +text_columns: + - Long Title + - Investigator First Name + - Investigator Last Name + - Award Current PI First Name + - Award Current PI Last Name + - Award Dept Name + +############################################################################### +# Recategorization / Labeling +############################################################################### + +keep_single_categories: False + +# Note: If there are contradictory categories the behavior is ill-defined +new_categories: + "Award Department [Award Dept Name]": + 'CIERA': "'CIERA - Ctr Int Exp Rsch Astr'" # Anything tagged as CIERA is CIERA + 'P&A': "'Physics & Astronomy' & (not 'CIERA - Ctr Int Exp Rsch Astr')" # Anything tagged as P&A is P&A, unless it's CIERA + "Award Department (Interdisciplinary Priority) [Award Dept Name]": + 'CIERA only': "only 'CIERA - Ctr Int Exp Rsch Astr'" # Stuff with one department + 'P&A only': "only 'Physics & Astronomy'" # More stuff with one department + 'CIERA interdisciplinary': "not 'Physics & Astronomy'" # Anything with CIERA and something else + # Investigator Primary Function (myHR): + # 'Faculty': "'Faculty' | 'Emeritus Faculty'" + # 'Staff': "'Staff' & (not ('Faculty' | 'Emeritus Faculty'))" + # Award Current PI Primary Function (myHR): + # 'Faculty': "'Faculty' | 'Emeritus Faculty'" + # 'Staff': "'Staff' & (not ('Faculty' | 'Emeritus Faculty'))" + diff --git a/test/lib_for_tests/__init__.py b/test/lib_for_tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/lib_for_tests/grants_user_utils.py b/test/lib_for_tests/grants_user_utils.py new file mode 100644 index 0000000..dd9b114 --- /dev/null +++ b/test/lib_for_tests/grants_user_utils.py @@ -0,0 +1,118 @@ +'''Data-handling functions. +These functions are the most-likely to be changed when adapting this dashboard. +''' +import glob +import numpy as np +import os +import pandas as pd + + +def load_data(config): + '''This is the main function for loading the data + (but save cleaning and preprocessing for later). + + This function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + raw_df (pandas.DataFrame): The data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + ''' + + # Get possible files + input_dir = os.path.join(config['data_dir'], config['input_dirname']) + pattern = os.path.join(input_dir, config['data_file_pattern']) + data_fps = glob.glob(pattern) + + if len(data_fps) == 0: + raise IOError('No files found matching pattern {}'.format(pattern)) + + # Select the most recent file + ind_selected = np.argmax([os.path.getctime(_) for _ in data_fps]) + data_fp = data_fps[ind_selected] + + raw_df = pd.read_csv(data_fp, sep='\t', encoding='UTF-16') + + return raw_df, config + + +def clean_data(raw_df, config): + '''This is the main function for cleaning the data. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + raw_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + cleaned_df (pandas.DataFrame): The cleaned data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + # Drop bad data (years earlier than 2000) + cleaned_df = raw_df.copy() + for date_column in config.get('date_columns',[]): + dates = pd.to_datetime(cleaned_df[date_column]) + zero_inds = cleaned_df.index[dates < pd.to_datetime('2000-01-01')] + cleaned_df = cleaned_df.drop(zero_inds) + + return cleaned_df, config + + +def preprocess_data(cleaned_df, config): + '''This is the main function for doing preprocessing, e.g. + adding new columns, renaming them, etc. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + cleaned_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + processed_df (pandas.DataFrame): The processed data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + preprocessed_df = cleaned_df.copy() + + # Set ID + preprocessed_df['id'] = preprocessed_df[config['primary_id_column']] + + # Convert dates to years. + for date_column in config.get('date_columns',[]): + + # Convert to datetime + preprocessed_df[date_column] = pd.to_datetime(preprocessed_df[date_column]) + + # Get date bins + start_year = preprocessed_df[date_column].min().year - 1 + end_year = preprocessed_df[date_column].max().year + 1 + date_bins = pd.date_range( + '{} {}'.format(config['year_start'], start_year), + pd.Timestamp.now() + pd.offsets.DateOffset(years=1), + freq = pd.offsets.DateOffset(years=1), + ) + date_bin_labels = date_bins.year[:-1] + + # Column name + year_column = date_column.replace('Date', 'Year') + if 'time_bin_columns' not in config: + config['time_bin_columns'] = [] + # To avoid overwriting the year column, we append a label to the end + if year_column in config['time_bin_columns']: + year_column += ' (Custom)' + config['time_bin_columns'].append(year_column) + + # Do the actual binning + preprocessed_df[year_column] = pd.cut(preprocessed_df[date_column], date_bins, labels=date_bin_labels) + + return preprocessed_df, config \ No newline at end of file diff --git a/test/lib_for_tests/press_user_utils.py b/test/lib_for_tests/press_user_utils.py new file mode 100644 index 0000000..ff20d1e --- /dev/null +++ b/test/lib_for_tests/press_user_utils.py @@ -0,0 +1,167 @@ +'''Functions for loading and preprocessing the data, specific to +the user's data. If you are adapting the dashboard as your own, +you likely need to alter these functions. +''' +import os +import glob +import numpy as np +import pandas as pd + +from root_dash_lib import utils + + +def load_data(config): + '''Modify this! + + This is the main function for loading the data + (but save cleaning and preprocessing for later). + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + raw_df (pandas.DataFrame): The data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + ''' + + ########################################################################## + # Filepaths + + input_dir = os.path.join(config['data_dir'], config['input_dirname']) + + def get_fp_of_most_recent_file(pattern): + '''Get the filepath of the most-recently created file matching + the pattern. We just define this here because we use it twice. + + Args: + pattern (str): The pattern to match. + + Returns: + fp (str): The filepath of the most-recently created file + matching the pattern. + ''' + fps = glob.glob(pattern) + ind_selected = np.argmax([os.path.getctime(_) for _ in fps]) + return fps[ind_selected] + + data_pattern = os.path.join(input_dir, config['website_data_file_pattern']) + data_fp = get_fp_of_most_recent_file(data_pattern) + + press_office_pattern = os.path.join( + input_dir, config['press_office_data_file_pattern'] + ) + press_office_data_fp = get_fp_of_most_recent_file(press_office_pattern) + + ########################################################################## + # Load data + + # Website data + website_df = pd.read_csv(data_fp, parse_dates=['Date',]) + website_df.set_index('id', inplace=True) + + # Load press data + press_df = pd.read_excel(press_office_data_fp) + press_df.set_index('id', inplace=True) + + # Combine the data + raw_df = website_df.join(press_df) + + return raw_df, config + + +def clean_data(raw_df, config): + '''Modify this! + + This is the main function for cleaning the data, + i.e. getting rid of NaNs, dropping glitches, etc. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + raw_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + cleaned_df (pandas.DataFrame): The cleaned data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + # Drop drafts + cleaned_df = raw_df.drop( + raw_df.index[raw_df['Date'].dt.year == 1970], + axis='rows', + ) + + # Drop weird articles---ancient ones w/o a title or press type + cleaned_df.dropna( + axis='rows', + how='any', + subset=['Title', 'Press Types',], + inplace=True, + ) + + # Get rid of HTML ampersands + for str_column in ['Title', 'Research Topics', 'Categories']: + cleaned_df[str_column] = cleaned_df[str_column].str.replace('&', '&') + + # Handle NaNs and such + columns_to_fill = ['Press Mentions', 'People Reached',] + cleaned_df[columns_to_fill] = cleaned_df[columns_to_fill].fillna( + value=0 + ) + cleaned_df.fillna(value='N/A', inplace=True) + + return cleaned_df, config + + +def preprocess_data(cleaned_df, config): + '''Modify this! + + This is the main function for doing preprocessing, e.g. + adding new columns, renaming them, etc. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + cleaned_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + processed_df (pandas.DataFrame): The processed data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + preprocessed_df = cleaned_df.copy() + + config['page_title'] = 'Modified Page Title' + + # Get the year, according to the config start date + preprocessed_df['Year'] = utils.get_year( + preprocessed_df['Date'], config['start_of_year'] + ) + + # Tweaks to the press data + if 'Title (optional)' in preprocessed_df.columns: + preprocessed_df.drop('Title (optional)', axis='columns', inplace=True) + for column in ['Press Mentions', 'People Reached']: + preprocessed_df[column] = preprocessed_df[column].astype('Int64') + + # Now explode the data + for group_by_i in config['groupings']: + preprocessed_df[group_by_i] = preprocessed_df[group_by_i].str.split('|') + preprocessed_df = preprocessed_df.explode(group_by_i) + + # Exploding the data results in duplicate IDs, + # so let's set up some new, unique IDs. + preprocessed_df['id'] = preprocessed_df.index + preprocessed_df.set_index(np.arange(len(preprocessed_df)), inplace=True) + + return preprocessed_df, config diff --git a/test/test_lib.py b/test/test_lib.py new file mode 100644 index 0000000..94ce8d9 --- /dev/null +++ b/test/test_lib.py @@ -0,0 +1,498 @@ +'''Tests for root_dash_lib +''' +import copy +import os +import unittest + +import numpy as np +import pandas as pd + +from event_dash_lib.dash_builder import DashBuilder +from .lib_for_tests import press_user_utils, grants_user_utils + + +def copy_config(root_config_fp, config_fp): + '''Copy the config file from the root directory to the test data directory. + Commonly used in setting up tests, so defined here. + + Args: + root_config_fp (str): Filepath for the config file + in the root directory. + config_fp (str): Filepath for the config file + in the test data directory. + ''' + + # Copy and edit config + with open(root_config_fp, 'r', encoding='UTF-8') as file: + config_text = file.read() + config_text = config_text.replace('../data', '.') + config_text = config_text.replace('./', '') + with open(config_fp, 'w', encoding='UTF-8') as file: + file.write(config_text) + + +def standard_setup( + self, + user_utils=None, + test_data_subdir='test_data_complete', + config_fn='config.yml' + ): + '''Common function for setting up the data + ''' + + # Get filepath info + test_dir = os.path.abspath(os.path.dirname(__file__)) + self.root_dir = os.path.dirname(test_dir) + self.data_dir = os.path.join( + self.root_dir, 'test_data', test_data_subdir, + ) + root_config_fp = os.path.join(self.root_dir, 'test', config_fn) + self.config_fp = os.path.join(self.data_dir, 'config.yml') + + copy_config(root_config_fp, self.config_fp) + + self.group_by = 'Research Topics' + + self.builder = DashBuilder(self.config_fp, user_utils) + self.data, self.config = \ + self.builder.prep_data(self.builder.config) + + +class TestPrepData(unittest.TestCase): + '''This tests the setup for press data. + ''' + + def setUp(self): + + # Get filepath info + test_dir = os.path.abspath(os.path.dirname(__file__)) + self.root_dir = os.path.dirname(test_dir) + self.data_dir = os.path.join( + self.root_dir, 'test_data', 'test_data_complete' + ) + root_config_fp = os.path.join(self.root_dir, 'test', 'config.yml') + self.config_fp = os.path.join(self.data_dir, 'config.yml') + copy_config(root_config_fp, self.config_fp) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + def test_constructor(self): + '''Does the constructor work? + ''' + + builder = DashBuilder(self.config_fp) + + assert builder.config['primary_id_column'] == 'index' + + def test_load_data(self): + '''Does load_data at least run?''' + + builder = DashBuilder(self.config_fp) + raw_df, config = builder.data_handler.load_data(builder.config) +''' + def test_preprocess_data(self): + + + builder = DashBuilder(self.config_fp) + preprocessed_df, config = builder.prep_data(builder.config) + + def test_changes_propagate(self): + + builder = DashBuilder(self.config_fp, press_user_utils) + builder_val_before = copy.copy(builder.config['Title']) + agg_val_before = copy.copy(builder.agg.config['Title']) + builder.prep_data(builder.config) + builder_val_after = copy.copy(builder.config['Title']) + agg_val_after = copy.copy(builder.agg.config['Title']) + + assert builder_val_before == agg_val_before + assert builder_val_before != builder_val_after + assert builder_val_after == agg_val_after +''' + # def test_consistent_original_and_preprocessed(self): + # '''Are the raw and preprocessed dataframes consistent? + # This checks the user utils more than anything, + # and also whether or not we can recover the raw data + # from the pre-processed data. + # ''' + + # builder = DashBuilder(self.config_fp) + # data, config = builder.prep_data(builder.config) + + # groupby_column = 'Research Topics' + + # test_df = data['preprocessed'].copy() + # test_df['dup_col'] = \ + # test_df['id'].astype(str) + test_df[groupby_column] + # test_df = test_df.drop_duplicates(subset='dup_col', keep='first') + # grouped = test_df.groupby('id') + # actual = grouped[groupby_column].apply('|'.join) + + # missing = data['cleaned'].loc[np.invert(data['cleaned'].index.isin(actual.index))] + # assert len(missing) == 0 + + # not_equal = actual != data['cleaned'][groupby_column] + # assert not_equal.sum() == 0 + # np.testing.assert_array_equal( + # actual, + # data['cleaned'][groupby_column] + # ) + + +class TestRecategorize(unittest.TestCase): + + def setUp(self): + standard_setup(self) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + # def test_recategorize_data_per_grouping_realistic(self): + + # group_by = 'Research Topics' + # cleaned_df = self.data['cleaned'] + # recategorized_df = self.builder.data_handler.recategorize_data_per_grouping( + # self.data['preprocessed'], + # group_by, + # self.builder.config['new_categories'][group_by], + # False, + # ) + + # # Check that compact objects is right + # not_included_groups = [ + # 'Stellar Dynamics & Stellar Populations', + # 'Exoplanets & The Solar System', + # 'Galaxies & Cosmology', + # 'N/A', + # ] + # for group in not_included_groups: + # is_group = cleaned_df[group_by].str.contains(group) + # is_compact = recategorized_df == 'Compact Objects' + # assert (is_group.values & is_compact.values).sum() == 0 + + # # Check that none of the singles categories shows up in other + # for group in pd.unique(self.data['preprocessed'][group_by]): + # is_group = cleaned_df[group_by] == group + # is_other = recategorized_df == 'Other' + # is_bad = (is_group.values & is_other.values) + # n_matched = is_bad.sum() + # # compare bad ids, good for debugging + # if n_matched > 0: + # bad_ids_original = cleaned_df.index[is_bad] + # bad_ids_recategorized = recategorized_df.index[is_bad] + # np.testing.assert_allclose( + # bad_ids_original, bad_ids_recategorized + # ) + # assert n_matched == 0 + + +''' - too specific; hard to adapt to events dash + def test_recategorize_data(self): + + recategorized = self.builder.data_handler.recategorize_data( + self.data['preprocessed'], + self.builder.config['new_categories'], + True, + ) + cleaned_df = self.data['cleaned'] + + # Check that NU Press inclusive is right + group_by = 'Press Types' + expected = ( + (cleaned_df[group_by] == 'CIERA Stories|Northwestern Press') | + (cleaned_df[group_by] == 'Northwestern Press|CIERA Stories') | + (cleaned_df[group_by] == 'Northwestern Press') + ) + actual = recategorized[group_by] == 'Northwestern Press (Inclusive)' + np.testing.assert_allclose( + actual.values, + expected.values, + ) + + # Check that compact objects is right + group_by = 'Research Topics' + not_included_groups = [ + 'Stellar Dynamics & Stellar Populations', + 'Exoplanets & The Solar System', + 'Galaxies & Cosmology', + 'N/A', + ] + for group in not_included_groups: + is_group = cleaned_df[group_by].str.contains(group) + is_compact = recategorized[group_by] == 'Compact Objects' + assert (is_group.values & is_compact.values).sum() == 0 + + # Check that none of the singles categories shows up in other + for group in pd.unique(self.data['preprocessed'][group_by]): + is_group = cleaned_df[group_by] == group + is_other = recategorized[group_by] == 'Other' + is_bad = (is_group.values & is_other.values) + n_matched = is_bad.sum() + # compare bad ids, good for debugging + if n_matched > 0: + bad_ids_original = cleaned_df.index[is_bad] + bad_ids_recategorized = recategorized.loc[is_bad, 'id'] + np.testing.assert_allclose( + bad_ids_original, bad_ids_recategorized + ) + assert n_matched == 0 + + def test_recategorize_data_rename(self): + + new_categories = self.builder.config['new_categories'] + new_categories['Also Research Topics [Research Topics]'] = { + 'Compact Objects': ( + "only ('Life & Death of Stars' | 'Gravitational Waves & Multi-Messenger Astronomy' | 'Black Holes & Dead Stars')" + ), + 'Cosmological Populations': ( + "only ('Galaxies & Cosmology' | 'Stellar Dynamics & Stellar Populations')" + ), + } + recategorized_df = self.builder.data_handler.recategorize_data( + self.data['preprocessed'], + new_categories, + True, + ) + is_bad = recategorized_df['Also Research Topics'] != \ + recategorized_df['Research Topics'] + n_bad = is_bad.sum() + assert n_bad == 0 + + # Check that this still works for columns with similar names + new_categories['Also Research Topics (with parenthesis) [Research Topics]'] = { + 'Compact Objects': ( + "only ('Life & Death of Stars' | 'Gravitational Waves & Multi-Messenger Astronomy' | 'Black Holes & Dead Stars')" + ), + 'Cosmological Populations': ( + "only ('Galaxies & Cosmology' | 'Stellar Dynamics & Stellar Populations')" + ), + } + recategorized_df = self.builder.data_handler.recategorize_data( + self.data['preprocessed'], + new_categories, + True, + ) + is_bad = recategorized_df['Also Research Topics (with parenthesis)'] != \ + recategorized_df['Research Topics'] + n_bad = is_bad.sum() + assert n_bad == 0 + + +class TestFilterData(unittest.TestCase): + + def setUp(self): + standard_setup(self) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + + def test_filter_data(self): + + search_str = '' + categorical_filters = { + 'Research Topics': ['Galaxies & Cosmology',], + 'Categories': ['Science', 'Event',], + } + range_filters = { + 'Fiscal Year': [2016, 2023], + } + + selected = self.builder.data_handler.filter_data( + self.data['preprocessed'], + { 'Title': search_str, }, + categorical_filters, + range_filters + ) + + assert np.invert(selected['Research Topics'] == 'Galaxies & Cosmology').sum() == 0 + assert np.invert(selected['Press Types'] == 'External Press').sum() == 0 + assert np.invert((selected['Categories'] == 'Science') | (selected['Categories'] == 'Event')).sum() == 0 + assert np.invert((2016 <= selected['Year']) & (selected['Year'] <= 2023)).sum() == 0 + assert np.invert((0 <= selected['Press Mentions']) & (selected['Press Mentions'] <= 10)).sum() == 0 +''' + +class TestAggregate(unittest.TestCase): + + def setUp(self): + standard_setup(self) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + def test_count(self): + + selected_df = self.data['preprocessed'] + + counts = self.builder.agg.count( + selected_df, + 'Fiscal Year', + 'id', + self.group_by + ) + total = self.builder.agg.count( + selected_df, + 'Fiscal Year', + 'id', + ) + + test_year = 2015 + test_group = 'Galaxies & Cosmology' + expected = len(pd.unique( + selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) & + (selected_df[self.group_by] == test_group) + ),'id'] + )) + assert counts.loc[test_year,test_group] == expected + + # Total count + test_year = 2015 + expected = len(pd.unique( + selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) + ),'id'] + )) + assert total.loc[test_year][0] == expected + + ############################################################################### + + def test_sum_attendance(self): + + selected_df = self.data['preprocessed'] + weighting = 'Attendance' + + sums = self.builder.agg.sum( + selected_df, + 'Fiscal Year', + weighting, + self.group_by, + ) + total = self.builder.agg.sum( + selected_df, + 'Fiscal Year', + weighting, + ) + + test_year = 2015 + test_group = 'Galaxies & Cosmology' + subselected = selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) & + (selected_df[self.group_by] == test_group) + )] + subselected = subselected.drop_duplicates(subset='id') + subselected = subselected.replace('N/A', 0,) + expected = subselected['Attendance'].sum() + assert sums.loc[test_year,test_group] == expected + + # Total count + test_year = 2015 + subselected = selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) + )] + subselected = subselected.drop_duplicates(subset='id') + subselected = subselected.replace('N/A', 0,) + expected = subselected['Attendance'].sum() + assert total.loc[test_year][0] == expected + + ############################################################################### + + def test_sum_attendance_nonzero(self): + + selected_df = self.data['preprocessed'] + weighting = 'Attendance' + + sums = self.builder.agg.sum( + selected_df, + 'Fiscal Year', + weighting, + self.group_by, + ) + totals = self.builder.agg.sum( + selected_df, + 'Fiscal Year', + weighting, + ) + + # Non-zero test + test_year = 2021 + test_group = 'Gravitational Waves & Multi-Messenger Astronomy' + subselected = selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) & + (selected_df[self.group_by] == test_group) + )] + subselected = subselected.drop_duplicates(subset='id') + subselected = subselected.replace('N/A', 0) + expected = subselected['Attendance'].sum() + assert expected > 0 + assert sums.loc[test_year,test_group] == expected + + # Total count + test_year = 2021 + subselected = selected_df.loc[( + (selected_df['Fiscal Year'] == test_year) + )] + subselected = subselected.drop_duplicates(subset='id') + subselected = subselected.replace('N/A', 0) + expected = subselected['Attendance'].sum() + assert totals.loc[test_year][0] == expected + +############################################################################### + +class TestStreamlit(unittest.TestCase): + + def setUp(self): + standard_setup(self, press_user_utils) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + ############################################################################### + + def test_base_page(self): + + import root_dash_lib.pages.base_page as base_page + + base_page.main(self.config_fp) + + # Set the environment variable to signal the app to stop + os.environ["STOP_STREAMLIT"] = "1" + + del os.environ["STOP_STREAMLIT"] + +############################################################################### + +class TestStreamlitGrants(unittest.TestCase): + + def setUp(self): + standard_setup( + self, + grants_user_utils, + 'test_data_mock_grants_and_proposals', + 'config_grants.yml', + ) + + def tearDown(self): + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + ############################################################################### + + def test_base_page(self): + + import root_dash_lib.pages.base_page as base_page + + base_page.main(self.config_fp, grants_user_utils) + + # Set the environment variable to signal the app to stop + os.environ["STOP_STREAMLIT"] = "1" + + del os.environ["STOP_STREAMLIT"] + + diff --git a/test/test_pipeline.py b/test/test_pipeline.py new file mode 100644 index 0000000..9393516 --- /dev/null +++ b/test/test_pipeline.py @@ -0,0 +1,229 @@ +import unittest + +import datetime +import glob +import os +import pytest +import shutil +import subprocess +import yaml + + +class TestPipeline(unittest.TestCase): + + def setUp(self): + + # Get filepath info + test_dir = os.path.abspath(os.path.dirname(__file__)) + self.root_dir = os.path.dirname(test_dir) + self.test_data_dir = os.path.join(self.root_dir, 'test_data', + 'test_data_raw_only') + root_config_fp = os.path.join(self.root_dir, 'src', 'config.yml') + self.config_fp = os.path.join(self.test_data_dir, 'config.yml') + self.timestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") + + # Set up temporary dirs + self.temp_dirs = { + 'processed_data_dir': os.path.join(self.test_data_dir, + 'processed_data'), + 'figure_dir': os.path.join(self.test_data_dir, 'figures'), + 'logs_dir': os.path.join(self.root_dir, 'logs'), + } + for key, temp_dir in self.temp_dirs.items(): + if os.path.isdir(temp_dir): + shutil.rmtree(temp_dir) + + # Set up news data fp + self.news_data_fp = os.path.join(self.test_data_dir, 'raw_data', + 'News_Report_2023-07-25.csv') + self.dup_news_data_fp = self.news_data_fp.replace('07-25', 'null-null') + + # Copy and edit config + with open(root_config_fp, 'r') as f: + config_text = f.read() + config_text = config_text.replace('../data', '.') + config_text = config_text.replace('./', '') + with open(self.config_fp, 'w') as f: + f.write(config_text) + + ############################################################################### + + def tearDown(self): + + # Remove dashboard and figures temp dirs + for key in ['processed_data_dir', 'figure_dir', 'logs_dir']: + temp_dir = self.temp_dirs[key] + if os.path.isdir(temp_dir): + shutil.rmtree(temp_dir) + + if os.path.exists(self.dup_news_data_fp): + os.remove(self.dup_news_data_fp) + + if os.path.isfile(self.config_fp): + os.remove(self.config_fp) + + # Remove any notebooks if they exist + notebook_fps = glob.glob(os.path.join(self.test_data_dir, + 'transform*.ipynb')) + for notebook_fp in notebook_fps: + os.remove(notebook_fp) + + ############################################################################### + + def test_parse_config(self): + + with open(self.config_fp, "r") as f: + config = yaml.load(f, Loader=yaml.FullLoader) + + # Paths are relative to the config + os.chdir(os.path.dirname(self.config_fp)) + assert config['data_dir'] == os.path.relpath(self.test_data_dir) + assert config['figure_dir'] == os.path.relpath( + self.temp_dirs['figure_dir'] + ) + + ############################################################################### + + def check_processed_data_and_logs(self, ext='.py'): + '''This method is re-used a few times to ensure that the + requested output is available.''' + + # Check that there are output files + output_files = [ + ('counts', 'counts.categories.csv',), + ('counts', 'counts.press_types.csv',), + ('counts', 'counts.research_topics.csv',), + ('press.csv',), + ('press.exploded.csv',), + ] + for output_file in output_files: + output_fp = os.path.join( + self.temp_dirs['processed_data_dir'], + *output_file + ) + assert os.path.isfile(output_fp) + + # Check that there's an output NB in the logs + transform_fps = glob.glob( + os.path.join( + self.temp_dirs['logs_dir'], + 'transform*{}'.format(ext) + ) + ) + assert len(transform_fps) > 0 + + ############################################################################### + + @pytest.mark.nbconvert + def test_transform(self): + '''Test that the transform works.''' + + # Move to the config directory + nb_fp = os.path.join(self.root_dir, 'src', 'transform.ipynb') + script_fn_base = 'transform.{}.test'.format(self.timestamp) + command = ' '.join(( + 'jupyter', + 'nbconvert', + '--to script', + nb_fp, + '--output={}'.format(script_fn_base), + '--output-dir={}'.format(self.temp_dirs['logs_dir']), + )) + conversion_subprocess_output = subprocess.run( + command, + shell=True, + capture_output=True, + cwd=self.test_data_dir, + ) + assert conversion_subprocess_output.returncode == 0 + + execution_subprocess_output = subprocess.run( + 'python {}.py'.format( + os.path.join(self.temp_dirs['logs_dir'], script_fn_base) + ), + shell=True, + capture_output=True, + cwd=self.test_data_dir, + ) + assert execution_subprocess_output.returncode == 0 + + self.check_processed_data_and_logs() + + ############################################################################### + + @pytest.mark.nbconvert + def test_transform_execute_as_nb(self): + '''Test that transform works when executing the notebook directly. + This would be nice because it would create the script that was run, and show the results alongside it in NB format. + ''' + + # Move to the config directory and copy in the notebook + os.chdir(self.test_data_dir) + nb_fp = os.path.join(self.root_dir, 'src', 'transform.ipynb') + copied_nb_fp = os.path.join(self.test_data_dir, 'transform.ipynb') + shutil.copy(nb_fp, copied_nb_fp) + + command = ' '.join(( + 'jupyter', + 'nbconvert', + '--to notebook', + '--execute {}'.format(copied_nb_fp), + '--output=transform.{}.test.ipynb'.format(self.timestamp), + '--output-dir={}'.format(self.temp_dirs['logs_dir']), + )) + subprocess_output = subprocess.run( + command, + shell=True, + capture_output=True, + cwd=self.test_data_dir, + ) + + # Ensure it ran successfully + assert subprocess_output.returncode == 0 + + self.check_processed_data_and_logs('.ipynb') + + ############################################################################### + + @pytest.mark.nbconvert + def test_transform_extra_files(self): + '''Test that transform works when there are multiple options.''' + + # Make an extra copy + shutil.copy(self.news_data_fp, self.dup_news_data_fp) + + self.test_transform() + + ############################################################################### + + @pytest.mark.nbconvert + def test_pipeline(self): + '''Test the pipeline script works.''' + + command = ' '.join(( + os.path.join(self.root_dir, 'src', 'pipeline.sh'), + self.config_fp, + )) + subprocess_output = subprocess.run( + command, + shell=True, + capture_output=True, + cwd=self.test_data_dir, + ) + + # Ensure it ran successfully + assert subprocess_output.returncode == 0 + + self.check_processed_data_and_logs('.py') + + ############################################################################### + + def test_streamlit(self): + + # Move to the root directory + os.chdir(self.root_dir) + + subprocess.check_output(['streamlit', + './test_dashboard/dashboard.py']) + + diff --git a/test_data/test_data_complete/processed_data/counts/counts.categories.csv b/test_data/test_data_complete/processed_data/counts/counts.categories.csv new file mode 100644 index 0000000..352a38c --- /dev/null +++ b/test_data/test_data_complete/processed_data/counts/counts.categories.csv @@ -0,0 +1,11 @@ +Year,Achievement,Data Science & Computing,Education,Event,Interdisciplinary,Outreach,Science,Uncategorized +2013,16,1,8,13,6,11,9,1 +2014,23,2,14,20,9,12,17,0 +2015,19,7,30,43,14,24,10,0 +2016,37,7,12,23,20,15,8,0 +2017,27,4,8,19,13,12,16,0 +2018,27,8,13,23,22,19,26,0 +2019,20,7,10,10,8,8,23,4 +2020,17,4,3,4,5,5,18,2 +2021,18,2,7,7,3,9,23,0 +2022,18,7,12,21,18,14,16,0 diff --git a/test_data/test_data_complete/processed_data/counts/counts.press_types.csv b/test_data/test_data_complete/processed_data/counts/counts.press_types.csv new file mode 100644 index 0000000..40f3c22 --- /dev/null +++ b/test_data/test_data_complete/processed_data/counts/counts.press_types.csv @@ -0,0 +1,11 @@ +Year,CIERA Stories,External Press,Northwestern Press +2013,27,10,1 +2014,44,9,10 +2015,59,11,13 +2016,48,16,16 +2017,36,17,13 +2018,43,31,12 +2019,33,13,16 +2020,24,10,15 +2021,26,9,18 +2022,38,15,17 diff --git a/test_data/test_data_complete/processed_data/counts/counts.research_topics.csv b/test_data/test_data_complete/processed_data/counts/counts.research_topics.csv new file mode 100644 index 0000000..b100b90 --- /dev/null +++ b/test_data/test_data_complete/processed_data/counts/counts.research_topics.csv @@ -0,0 +1,11 @@ +Year,Black Holes & Dead Stars,Exoplanets & The Solar System,Galaxies & Cosmology,Gravitational Waves & Multi-Messenger Astronomy,Life & Death of Stars,Stellar Dynamics & Stellar Populations +2013,4,1,1,3,0,0 +2014,3,8,4,0,3,0 +2015,2,5,3,13,3,5 +2016,10,12,8,17,11,4 +2017,14,2,8,16,6,8 +2018,8,3,5,20,6,5 +2019,11,4,9,13,13,4 +2020,14,6,8,14,13,6 +2021,18,5,10,14,21,6 +2022,17,14,11,27,17,10 diff --git a/test_data/test_data_complete/processed_data/press.csv b/test_data/test_data_complete/processed_data/press.csv new file mode 100644 index 0000000..679f72d --- /dev/null +++ b/test_data/test_data_complete/processed_data/press.csv @@ -0,0 +1,569 @@ +id,Title,Date,Permalink,Research Topics,Press Types,Categories,Year,Press Mentions,People Reached,Top Outlets,Notes +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",2018-07-26,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2017,,,, +437,12th International LISA Symposium Held in Chicago by CIERA & AAS,2018-07-13,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,External Press,Science,2017,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Event|Interdisciplinary|Outreach,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Event|Interdisciplinary|Outreach,2015,,,, +1286,CIERA Sponsors Meeting of Gravitational Wave International Committee,2018-07-08,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",2018-06-29,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,,,, +1289,Experts Gather to Discuss the Circumgalactic Medium,2018-08-04,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,Galaxies & Cosmology,CIERA Stories,Event,2017,,,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Achievement|Education,2017,,,, +1295,Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson,2017-09-01,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,CIERA Stories,Achievement,2016,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Event|Interdisciplinary|Outreach,2017,,,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Achievement|Data Science & Computing,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Outreach,2017,,,, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,,,, +1324,Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting,2017-09-01,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2017,,,, +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2017,,,, +1347,Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran,2017-09-18,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,Life & Death of Stars,External Press,Science,2017,,,, +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,CIERA Stories|External Press,Achievement,2017,,,, +1352,CIERA Researchers Contribute to Record-setting Gravitational Wave Detection,2017-09-27,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars|Exoplanets & The Solar System|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Interdisciplinary,2017,,,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,External Press|Northwestern Press,Achievement,2017,,,, +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Achievement|Education,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1370,CIERA’s Shane Larson Joins U.S. NASA LISA Study Team,2017-10-15,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories|Northwestern Press,Event|Outreach,2017,,,, +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Achievement|Education,2017,,,, +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Achievement|Interdisciplinary,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,Northwestern Press,Achievement|Interdisciplinary|Outreach,2017,,,, +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2017,,,, +1390,REU Student José Flores Velazquez Presents Research on Capitol Hill,2018-04-20,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Education|Event|Interdisciplinary,2017,,,, +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Achievement|Science,2017,,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Achievement|Event,2017,,,, +1399,Embassy of Greece Interviews CIERA Director Vicky Kalogera,2018-03-27,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,External Press,Achievement,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2017,,,, +1411,Top Telescope Access for CIERA Researchers,2017-11-01,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,CIERA Stories,Science,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Event|Interdisciplinary|Outreach,2017,,,, +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Event|Outreach,2017,,,, +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,External Press|Northwestern Press,Achievement,2017,,,, +1438,CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,CIERA Stories,Achievement,2017,,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Achievement|Education|Event|Interdisciplinary,2017,,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Science,2017,,,, +1452,CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics,2018-01-10,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,Northwestern Press,Achievement,2017,,,, +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2017,,,, +1456,Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos,2018-01-09,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,Life & Death of Stars,External Press,Science,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2017,,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars|Life & Death of Stars,External Press|Northwestern Press,Science,2017,,,, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2017,,,, +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Achievement|Outreach,2017,,,, +1493,Another Way for Stellar-mass Black Holes to Grow Larger,2018-08-17,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Event|Outreach,2018,,,, +1613,CIERA REU Panel Discussion Explores Careers in Astrophysics,2018-08-06,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,CIERA Stories,Education,2017,,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement|Event|Interdisciplinary|Outreach,2017,,,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary,2017,,,, +1668,Astronomers Witness Birth of New Star from Stellar Explosion,2018-09-20,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,Life & Death of Stars,External Press,Science,2018,,,, +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Achievement|Science,2017,,,, +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",2018-09-01,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,CIERA Stories,Achievement,2017,,,, +1698,CIERA Researchers Featured in “Humans of LIGO”,2018-09-20,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2018,,,, +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Event|Outreach,2018,,,, +1928,CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,CIERA Stories,Achievement,2016,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories|External Press,Event|Interdisciplinary|Outreach,2018,,,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Achievement|Event|Outreach,2018,,,, +1940,CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Event|Outreach,2018,,,, +1950,New Issue of “LIGO Magazine” Available,2017-08-31,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories|External Press|Northwestern Press,Event|Outreach,2016,,,, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Event|Outreach,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement|Education|Event|Interdisciplinary|Outreach,2016,,,, +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Education|Event,2016,,,, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Education|Interdisciplinary,2016,,,, +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,External Press|Northwestern Press,Science,2016,,,, +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,External Press|Northwestern Press,Science,2016,,,, +2088,The Computing Power Behind CIERA’s Galaxy Formation Research,2017-07-20,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Event|Outreach,2016,,,, +2111,CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine,2018-11-02,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,Life & Death of Stars,External Press,Science,2018,,,, +2199,CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video,2017-06-12,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,Northwestern Press,Achievement,2016,,,, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Black Holes & Dead Stars|Exoplanets & The Solar System|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2016,,,, +2210,Astronomy Students Awarded Best Senior Thesis,2017-05-30,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Event|Interdisciplinary|Outreach,2016,,,, +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Achievement|Interdisciplinary,2016,,,, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories|External Press|Northwestern Press,Event|Interdisciplinary|Outreach,2016,,,, +2321,Chicago Woman Magazine Features CIERA Director Prof. Kalogera,2017-05-06,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,External Press,Achievement,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2016,,,, +2337,CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence,2017-05-01,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Achievement|Data Science & Computing|Event|Interdisciplinary,2016,,,, +2340,Prof. Faucher-Giguère Receives NSF Honor for Young Faculty,2017-04-29,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing,2016,,,, +2343,Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space,2017-04-27,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,CIERA Stories,Achievement,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2016,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2018,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Data Science & Computing|Interdisciplinary|Outreach,2016,,,, +2439,CIERA Pilot Program Exposes Students to Astronomy Research,2017-03-13,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,CIERA Stories,Education,2016,,,, +2442,CIERA Professor Giles Novak Joins ALMA Science Advisory Committee,2017-03-12,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,CIERA Stories,Achievement,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2016,,,, +2451,Media Seek Expertise on New Planets in TRAPPIST-1 System,2017-02-28,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,Exoplanets & The Solar System,External Press,Outreach,2016,,,, +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Education|Event,2016,,,, +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",2017-01-31,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,Life & Death of Stars,External Press,Science,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2523,Supernova News from CIERA Professor Raffaella Margutti,2017-01-29,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,Life & Death of Stars,External Press,Science,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement|Education|Interdisciplinary,2016,,,, +2536,CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229,2017-01-27,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,CIERA Stories,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories|External Press,Achievement|Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2016,,,, +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Achievement|Outreach,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Outreach,2018,,,, +2768,Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest,2016-12-31,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,External Press|Northwestern Press,Achievement,2018,,,, +2819,Year-in-Review Honors for the LIGO Scientific Collaboration,2016-12-30,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Event|Outreach,2016,,,, +2828,Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni,2016-12-28,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2829,Postdocs & Graduate Students Present at Annual CIERA Research Jamboree,2016-12-15,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,CIERA Stories,Event,2016,,,, +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2018,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Event|Interdisciplinary,2016,,,, +2995,Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio,2016-11-30,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,Northwestern Press,Achievement,2016,,,, +2996,Graduate Student Matthew Rickert Wins Reber Fellowship,2016-11-29,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Interdisciplinary|Science,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Achievement|Education,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,External Press,Achievement|Science,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Achievement|Education|Event,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Achievement|Education|Interdisciplinary,2016,,,, +3007,CIERA’s Board of Visitors Meets with Top University Officials,2016-10-30,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,CIERA Stories,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories|Northwestern Press,Event|Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Data Science & Computing|Interdisciplinary|Outreach,2016,,,, +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Achievement|Interdisciplinary,2016,,,, +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Achievement|Education,2016,,,, +3065,Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics,2016-09-30,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,CIERA Stories,Achievement,2016,,,, +3208,CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship,2016-09-27,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2016,,,, +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2016,,,, +3224,CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,2016-09-02,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,CIERA Stories,Event,2016,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Achievement|Interdisciplinary,2018,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,CIERA Stories|Northwestern Press,Achievement,2015,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Achievement|Data Science & Computing|Science,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories|External Press,Achievement|Education|Interdisciplinary|Outreach,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars|Life & Death of Stars,External Press|Northwestern Press,Science,2018,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Science,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Education|Event|Interdisciplinary,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2015,,,, +3308,CIERA's 2016 Summer Student Researchers,2016-08-28,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary|Outreach,2015,,,, +3314,Physics and Astronomy Department Rising in Impact and Visibility,2016-07-30,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,Northwestern Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement|Outreach|Science,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Achievement|Education|Interdisciplinary,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing|Education|Event|Outreach,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,CIERA Stories|Northwestern Press,Data Science & Computing,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Event|Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2015,,,, +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,CIERA Stories|Northwestern Press,Achievement,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Education|Event,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Achievement|Science,2015,,,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Achievement|Science,2018,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories|External Press,Event|Outreach,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Event|Interdisciplinary|Outreach,2015,,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Event|Interdisciplinary,2018,,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Event|Outreach,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Education|Outreach,2018,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Data Science & Computing|Education|Event|Outreach,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Education|Event|Interdisciplinary,2015,,,, +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",2016-05-01,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Data Science & Computing|Interdisciplinary|Science,2018,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,CIERA Stories|Northwestern Press,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories|Northwestern Press,Data Science & Computing|Event|Interdisciplinary,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|Northwestern Press,Achievement|Education|Event,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2015,,,, +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2015,,,, +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",2016-03-31,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,External Press,Achievement,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event,2015,,,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Event|Outreach,2015,,,, +3556,The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology,2016-02-28,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,CIERA Stories,Event,2015,,,, +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Outreach,2015,,,, +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Science,2015,,,, +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2015,,,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Achievement|Event,2015,,,, +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2015,,,, +3614,New Monthly Night at Dearborn Observatory with CIERA Astronomers,2016-01-27,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,CIERA Stories,Event,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories|External Press,Education|Outreach|Science,2015,,,, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Achievement|Education|Outreach,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Achievement|Data Science & Computing|Education,2015,,,, +3624,AAAS Fellow Jeremy Ward Visits CIERA,2015-12-06,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,CIERA Stories,Event,2015,,,, +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,External Press|Northwestern Press,Achievement,2018,,,, +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary|Science,2018,,,, +3637,Professors Novak & Sageman Named to 2015 Faculty Honor Roll,2015-11-30,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,CIERA Stories,Achievement,2015,,,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event|Outreach,2015,,,, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education|Event,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Achievement|Interdisciplinary,2015,,,, +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary,2015,,,, +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3661,CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold,2015-11-10,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,CIERA Stories,Event,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Education|Event|Outreach,2015,,,, +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Exoplanets & The Solar System|Life & Death of Stars,External Press,Achievement,2018,,,, +3724,CIERA Professor Wen-Fai Fong Interviewed by Science News,2019-02-25,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +3732,CIERA Director Elected to LSSTC ExecBoard,2015-11-01,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,CIERA Stories,Achievement,2015,,,, +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Education|Event,2015,,,, +3737,Dearborn Observatory Featured in Open House Chicago 2015,2015-10-25,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,External Press,Event,2015,,,, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press|Northwestern Press,Achievement,2015,,,, +3741,CIERA’s Shane Larson Elected APS Fellow,2015-10-15,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,CIERA Stories,Achievement,2015,,,, +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education|Event,2015,,,, +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3757,CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics,2015-11-22,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Education|Event|Outreach,2015,,,, +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Education|Event,2015,,,, +3784,CIERA's 2015 Summer Student Researchers,2015-08-31,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,CIERA Stories,Education,2014,,,, +3787,CIERA Director Vicky Kalogera Speaks to Office for Research Staff,2015-08-30,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,CIERA Stories,Event,2014,,,, +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories|External Press|Northwestern Press,Science,2014,,,, +3793,Immediate Opening for Graduate Student: CIERA Keck Foundation Grant,2015-07-27,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +3795,CIERA Undergraduate Researcher Accepted to Ph.D. Programs,2015-07-22,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,CIERA Stories,Achievement,2014,,,, +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories|External Press,Achievement|Science,2014,,,, +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Education|Event,2014,,,, +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories|External Press,Achievement|Science,2014,,,, +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",2019-02-27,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,External Press,Achievement,2018,,,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Education|Interdisciplinary|Outreach,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press|Northwestern Press,Data Science & Computing|Education|Interdisciplinary|Science,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Data Science & Computing|Education|Interdisciplinary|Outreach,2018,,,, +3843,Eight New Postdoctoral Researchers Join CIERA,2019-04-01,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,CIERA Stories,Achievement,2018,,,, +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories|External Press,Data Science & Computing|Interdisciplinary|Outreach|Science,2018,,,, +3868,CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves,2019-04-01,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Event|Outreach,2018,,,, +3872,Professor Margutti’s Paper Among Top Ten in 2018,2019-04-03,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +3881,Illinois Congressman Visits CIERA,2015-06-27,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,CIERA Stories,Outreach,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3885,NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden,2015-06-10,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Achievement|Science,2014,,,, +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Achievement|Interdisciplinary|Science,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Education|Event,2014,,,, +3931,CIERA Fellow Geller Wins First Prize in Data Visualization Challenge,2015-04-29,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3939,CIERA Faculty Comment on World’s First Image of a Black Hole,2019-04-16,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2018,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories|Northwestern Press,Event|Interdisciplinary|Science,2014,,,, +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Achievement|Science,2014,,,, +3945,Two NSF Graduate Fellowships Awarded to NU Astronomy Students,2015-04-18,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories|External Press,Achievement|Data Science & Computing|Interdisciplinary,2014,,,, +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Achievement|Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Education|Event,2018,,,, +3964,CIERA’s Paul Williams on Studying Star Formation in Antarctica,2019-04-19,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,Galaxies & Cosmology,CIERA Stories,Science,2018,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Education|Event|Outreach,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories|Northwestern Press,Achievement|Event|Outreach,2014,,,, +3974,CIERA to Welcome Four New Postdocs in Fall 2015,2015-03-19,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,CIERA Stories,Achievement,2014,,,, +3976,Summer Undergraduate Student Success Stories: CIERA Alumni,2015-03-01,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,CIERA Stories,Education,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Achievement|Data Science & Computing|Interdisciplinary|Science,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,CIERA Stories|External Press,Science,2014,,,, +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",2015-02-20,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,CIERA Stories|External Press|Northwestern Press,Science,2014,,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Achievement|Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Education|Event|Outreach,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories|External Press,Achievement|Event|Science,2014,,,, +4028,Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks,2014-12-15,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,Galaxies & Cosmology,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2014,,,, +4040,A New Infrared Camera for Exoplanet Imaging,2019-04-29,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,Exoplanets & The Solar System,CIERA Stories,Science,2018,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories|Northwestern Press,Achievement|Outreach|Science,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories|Northwestern Press,Achievement|Education|Event|Outreach,2014,,,, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Event|Interdisciplinary|Science,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories|External Press|Northwestern Press,Education|Event|Outreach|Science,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories|External Press,Achievement|Education|Event,2014,,,, +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Achievement|Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology|Life & Death of Stars,CIERA Stories|Northwestern Press,Achievement|Interdisciplinary|Science,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories|Northwestern Press,Education|Event|Outreach,2014,,,, +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Achievement|Science,2014,,,, +4082,Professor Meyer Named to 2014 Faculty Honor Roll,2014-09-09,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,CIERA Stories,Achievement,2014,,,, +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2013,,,, +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Event|Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories|External Press,Achievement|Science,2013,,,, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Education|Outreach,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Education|Event|Science,2013,,,, +4096,LIGO on Lookout for 8 Sources of Gravitational Waves,2019-05-06,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4100,First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole,2019-05-02,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4127,The Science that Shared Buzz Aldrin’s Space Selfie,2014-07-27,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,External Press,Science,2013,,,, +4129,CIERA Director Elected Trustee of Aspen Center for Physics,2014-07-15,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,CIERA Stories,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories|External Press,Achievement|Event|Outreach|Science,2013,,,, +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Achievement|Education|Interdisciplinary,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories|External Press,Achievement|Science,2013,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Education|Event|Interdisciplinary|Outreach,2018,,,, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories|External Press,Achievement|Interdisciplinary,2013,,,, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Science,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Achievement|Education|Outreach,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Education|Event|Outreach,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Achievement|Event|Outreach,2013,,,, +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Achievement|Interdisciplinary,2018,,,, +4172,What Next for Gravitational Wave Detection?,2019-06-04,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2018,,,, +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Achievement|Interdisciplinary,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories|External Press,Education|Event|Science,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories|External Press,Achievement|Education|Event|Interdisciplinary|Outreach,2013,,,, +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",2019-06-19,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4234,Fred Rasio Receives 2019 Brouwer Award,2019-06-20,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,Northwestern Press,Achievement,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Event|Science,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2018,,,, +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Event|Interdisciplinary,2018,,,, +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Achievement|Education,2018,,,, +4280,Aprajita Hajela Wins NASA Future Investigator Award,2019-07-10,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +4283,Northwestern Leads Effort to Detect New Types of Cosmic Events,2019-07-17,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press,Science,2018,,,, +4328,SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space,2019-08-15,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2018,,,, +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Event|Outreach,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Education|Event|Outreach,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2018,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Outreach|Science,2018,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4406,Announcing CIERA’s 2019 Summer Undergraduate Researchers,2019-06-01,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,CIERA Stories,Education,2018,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars|Galaxies & Cosmology,External Press|Northwestern Press,Science,2019,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Education|Event|Outreach,2018,,,, +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Education|Event|Outreach,2013,,,, +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories|Northwestern Press,Achievement|Outreach,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Achievement|Outreach,2013,,,, +4471,Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship,2014-05-01,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,CIERA Stories,Achievement,2013,,,, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Event|Interdisciplinary,2013,,,, +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Achievement|Event,2013,,,, +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Uncategorized,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Event|Outreach,2013,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2019,,,, +4531,"""A star has been flickering for years – and researchers think they've figured out why""",2019-10-31,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,Life & Death of Stars,External Press,Science,2019,,,, +4534,CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS,2019-11-01,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,Northwestern Press,Achievement,2019,,,, +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,External Press|Northwestern Press,Science,2019,,,, +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Achievement|Education,2018,,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2019,,,, +4591,CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,CIERA Stories,Achievement,2018,,,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Education|Event|Outreach,2019,,,, +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Event|Outreach,2019,,,, +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Event|Outreach,2019,,,, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2013,,,, +4636,CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows,2019-11-26,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,Northwestern Press,Achievement,2019,,,, +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2019,,,, +4650,An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light,2019-12-09,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4656,First Discoveries by the Young Supernova Experiment,2019-12-08,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,Life & Death of Stars,External Press,Science,2019,,,, +4658,Faucher-Giguère Named Highly Cited Researcher,2019-12-02,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,Northwestern Press,Achievement,2019,,,, +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,CIERA Stories|External Press,Science,2019,,,, +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Achievement|Science,2019,,,, +4713,This Exoplanet is in a Death Dance with its Star,2020-01-13,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,Exoplanets & The Solar System,External Press,Science,2019,,,, +4762,CIERA Postdocs Advance to New Positions,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,CIERA Stories,Achievement,2018,,,, +4763,Using Gravitational Waves to See Inside Stars,2019-12-09,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Outreach,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2019,,,, +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Science,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Data Science & Computing|Event|Outreach,2019,,,, +4833,Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows,2020-02-25,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,External Press,Achievement,2019,,,, +4855,Coronavirus/COVID-19 Update,2020-03-13,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,CIERA Stories,Uncategorized,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Data Science & Computing|Education|Event,2019,,,, +4870,Coronavirus/COVID-19 Update,2020-03-25,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,CIERA Stories,Uncategorized,2019,,,, +4875,Seven New Postdoctoral Researchers Join CIERA,2020-04-01,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,CIERA Stories,Achievement,2019,,,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Achievement|Data Science & Computing|Science,2019,,,, +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Interdisciplinary|Outreach,2019,,,, +4888,Prof. Margutti Receives NSF Honor for Junior Faculty,2020-03-26,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,Northwestern Press,Achievement,2019,,,, +4889,A Supernova that Outshines All Others,2020-04-13,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,Life & Death of Stars,External Press,Science,2019,,,, +4899,Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy,2020-04-20,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4901,NASA Hubble Fellowship Awarded to Michael Zevin,2020-04-21,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,CIERA Stories,Achievement,2019,,,, +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",2020-04-21,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,CIERA Stories,Uncategorized,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement|Data Science & Computing|Interdisciplinary,2019,,,, +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press,Achievement,2019,,,, +4921,Using Gravitational Waves to Approximate Pi,2020-05-19,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4924,Astrophysicists Capture New Class of Transient Objects,2020-05-26,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Achievement|Education,2019,,,, +4937,Undergraduate Andrew Bowen Receives AAS Chambliss Award,2020-05-07,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,,,, +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Education|Outreach,2019,,,, +4944,Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM,2020-06-01,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,CIERA Stories,Achievement,2019,,,, +4948,Black Lives Matter,2020-06-06,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,CIERA Stories,Uncategorized,2019,,,, +4964,New Mystery Merger Detected by LIGO-Virgo,2020-06-23,https://ciera.northwestern.edu/2020/06/23/gw190814/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4977,CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize,2020-06-18,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,CIERA Stories,Achievement,2019,,,, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Black Holes & Dead Stars|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,,,, +4982,Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award,2020-06-19,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4998,Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected,2020-07-14,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5003,Spectacular ultraviolet flash may finally explain how white dwarfs explode,2020-07-23,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5016,Calcium-rich supernova examined with X-rays for first time,2020-08-05,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Achievement|Education,2019,,,, +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,,,, +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5078,CIERA Postdocs Move on to New Positions,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,CIERA Stories,Achievement,2020,,,, +5094,Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists,2020-09-08,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,Galaxies & Cosmology,CIERA Stories,Science,2020,,,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Education|Outreach,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Education|Interdisciplinary,2019,,,, +5382,Update on Initiative for Social Justice,2020-10-01,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,CIERA Stories,Uncategorized,2020,,,, +5446,The Low Spin of the Milky Way's Supermassive Black Hole,2020-10-20,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,,,, +5454,Star 'Spaghettified' by a Supermassive Black Hole,2020-10-12,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,,,, +5523,Black hole ‘family portrait’ is most detailed to date,2020-10-29,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5526,Statement of Principles and Values,2020-10-28,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,CIERA Stories,Uncategorized,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2020,,,, +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Event|Outreach,2020,,,, +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2020,,,, +5624,André de Gouvêa Selected as 2020 AAAS Fellow,2020-11-30,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,CIERA Stories,Achievement,2020,,,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement|Data Science & Computing,2020,,,, +5678,Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago,2020-12-14,https://ciera.northwestern.edu/2020/12/14/christmas-star/,Exoplanets & The Solar System,External Press,Outreach,2020,,,, +5726,Faucher-Giguère Named Highly Cited Researcher for Second Year,2020-12-21,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,Galaxies & Cosmology,External Press,Achievement,2020,,,, +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary|Science,2020,,,, +5759,2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi,2020-10-25,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5761,String of Stars in Milky Way are Related,2021-01-15,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2020,,,, +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars|Exoplanets & The Solar System|Life & Death of Stars,CIERA Stories,Event|Outreach,2020,,,, +5842,Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos,2021-02-18,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5863,Major Award for Gravitational Wave Researcher Christopher Berry,2021-03-15,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Black Holes & Dead Stars|Life & Death of Stars,External Press,Science,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +5904,Prof. Fong Receives NSF Honor for Young Faculty,2021-03-24,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,Life & Death of Stars,Northwestern Press,Achievement,2020,,,, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Outreach,2020,,,, +5920,200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics,2021-04-02,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2020,,,, +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Achievement,2020,,,, +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Achievement|Education,2020,,,, +5979,Vicky Kalogera Elected to American Academy of Arts and Sciences,2021-04-23,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,,,, +6008,Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs,2021-04-28,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,Life & Death of Stars,CIERA Stories,Science,2020,,,, +6010,American Physical Society Elects Professors Margutti and Larson to Committees,2021-04-17,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,CIERA Stories,Achievement,2020,,,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2020,,,, +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,External Press|Northwestern Press,Science,2020,,,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Education|Interdisciplinary|Outreach,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology|Life & Death of Stars,External Press|Northwestern Press,Data Science & Computing|Science,2020,,,, +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,External Press|Northwestern Press,Science,2020,,,, +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2020,,,, +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Data Science & Computing|Interdisciplinary,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Data Science & Computing|Science,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Achievement|Interdisciplinary,2020,,,, +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Education|Interdisciplinary,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Education|Outreach,2021,,,, +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Science,2021,,,, +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2021,,,, +6662,CIERA Welcomes New Faculty Member Adam Miller,2021-09-01,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Achievement|Science,2021,,,, +6776,Astronomers capture red supergiant’s death throes,2022-01-06,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",2022-01-26,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Achievement|Education,2021,,,, +6885,Wen-fai Fong named Sloan Research Fellow,2022-02-15,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Data Science & Computing|Education|Outreach|Science,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Event|Science,2021,,,, +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Education|Outreach,2021,,,, +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7031,Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society,2022-04-06,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,CIERA Stories,Achievement,2021,,,, +7033,CIERA Astronomers Travel to Mexico to Install TolTEC Camera,2022-04-06,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars|Exoplanets & The Solar System,CIERA Stories,Achievement|Event,2021,,,, +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,,,, +7084,Erin Cox Awarded NSF MPS-Ascend Fellowship,2022-04-29,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7104,Tarraneh Eftekhari Named NASA Einstein Fellow,2022-05-03,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Event|Outreach,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Achievement|Data Science & Computing,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories|External Press,Event|Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories|External Press,Achievement|Outreach,2021,,,, +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,26,4500000,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Event|Science,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Education|Interdisciplinary,2021,,,, +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",2022-06-29,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,Black Holes & Dead Stars,Northwestern Press,Science,2021,15,108900,ANI, +7243,CIERA student's paper highlighted by NASA's SOFIA Science Center,2022-07-08,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,Life & Death of Stars,External Press,Science,2021,,,, +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Achievement|Science,2021,8,1300000,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2021,47,7300000,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,External Press|Northwestern Press,Science,2021,8,337590,MSN, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Black Holes & Dead Stars|Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Outreach,2021,,,, +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars|Life & Death of Stars,Northwestern Press,Event|Science,2021,8,588300,"ABC7, WBEZ", +7350,CIERA Postdocs Advance to New Positions,2022-09-14,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,CIERA Stories,Achievement,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach,2022,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach,2021,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Interdisciplinary|Outreach,2022,,,, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Black Holes & Dead Stars|Galaxies & Cosmology,Northwestern Press,Science,2021,10,436600,Cosmos Magazine, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,External Press|Northwestern Press,Science,2021,2,5000,"• WTTW, Sept. 12, 2022",Included local evening news feature +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Exoplanets & The Solar System|Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars|Life & Death of Stars,Northwestern Press,Interdisciplinary|Science,2021,4,105000,"• Space Daily, Aug. 15, 2022",Included local evening news feature +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2022,,,, +7631,The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci,2022-10-13,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,CIERA Stories,Achievement,2022,,,, +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +7698,CIERA Hosts SEDM & ZTF,2022-11-04,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Education|Event,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Achievement|Event|Outreach,2022,,,, +7711,What makes gamma-ray bursts blink on and off?,2022-11-08,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,12,917000,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Achievement|Science,2022,0,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Education|Event|Interdisciplinary,2022,,,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars|Life & Death of Stars,CIERA Stories,Event|Interdisciplinary,2022,,,, +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,94,13900000,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Outreach|Science,2022,,,, +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing|Interdisciplinary|Outreach,2022,,,, +7894,Professor Dave Meyer retires after 35 years at Northwestern,2023-01-11,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement|Education,2022,,,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,CIERA Stories|External Press,Science,2022,,,, +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,External Press|Northwestern Press,Science,2022,21,3000000,"CNET, Sky and Telescope", +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Education|Event|Interdisciplinary,2022,,,, +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press|Northwestern Press,Outreach|Science,2022,63,17300000,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +8015,Graduate student's photos of green comet featured in major media outlets,2023-02-03,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,Galaxies & Cosmology,External Press,Outreach,2022,,,, +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Event|Outreach,2022,,,, +8056,CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award,2023-02-16,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,External Press|Northwestern Press,Achievement,2022,1,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Data Science & Computing|Education|Interdisciplinary,2022,,,, +8131,Northwestern to host gravitational-wave researchers from around the globe,2023-03-08,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2022,0,,, +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Event|Interdisciplinary,2022,,,, +8166,International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA,2023-04-14,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event|Interdisciplinary|Outreach,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Data Science & Computing|Education|Event|Interdisciplinary,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing|Event|Interdisciplinary,2022,,,, +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Achievement|Interdisciplinary,2022,,,, +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,External Press|Northwestern Press,Science,2022,88,7200000,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News",As of 2023-05-09 +8271,Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award,2023-04-28,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing|Event|Interdisciplinary|Outreach,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement|Interdisciplinary,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Event|Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations,CIERA Stories|External Press,Data Science & Computing|Event|Interdisciplinary|Outreach,2022,,,, +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Event|Interdisciplinary,2022,,,, +8365,PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship,2023-06-07,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,External Press|Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Galaxies & Cosmology|Life & Death of Stars,Northwestern Press,Science,2022,,,, +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars,Northwestern Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,External Press|Northwestern Press,Science,2022,,,, +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education|Outreach,2022,,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Education|Event|Outreach,2022,,,, diff --git a/test_data/test_data_complete/processed_data/press.exploded.csv b/test_data/test_data_complete/processed_data/press.exploded.csv new file mode 100644 index 0000000..ce52cec --- /dev/null +++ b/test_data/test_data_complete/processed_data/press.exploded.csv @@ -0,0 +1,1698 @@ +id,Title,Date,Permalink,Research Topics,Press Types,Categories,Year,Press Mentions,People Reached,Top Outlets,Notes +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",2018-07-26,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2017,,,, +437,12th International LISA Symposium Held in Chicago by CIERA & AAS,2018-07-13,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Black Holes & Dead Stars,External Press,Science,2017,,,, +769,Shaping Globular Clusters with Black Holes,2018-03-21,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,Stellar Dynamics & Stellar Populations,External Press,Science,2017,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Event,2015,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Interdisciplinary,2015,,,, +774,See The Planets Of Our Solar System While Listening To 'The Planets',2016-05-18,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,Exoplanets & The Solar System,External Press,Outreach,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Event,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Interdisciplinary,2015,,,, +776,Solar System Symphony Melds Music with Astronomy,2016-05-23,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,Exoplanets & The Solar System,External Press,Outreach,2015,,,, +1286,CIERA Sponsors Meeting of Gravitational Wave International Committee,2018-07-08,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",2018-06-29,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,,,, +1289,Experts Gather to Discuss the Circumgalactic Medium,2018-08-04,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,Galaxies & Cosmology,CIERA Stories,Event,2017,,,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Achievement,2017,,,, +1294,CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee,2018-08-13,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,CIERA Stories,Education,2017,,,, +1295,Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson,2017-09-01,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,CIERA Stories,Achievement,2016,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Event,2017,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Interdisciplinary,2017,,,, +1306,CIERA Helps Chicago-Area High School Students Host 2018 GirlCon,2018-06-16,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,CIERA Stories,Outreach,2017,,,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Achievement,2017,,,, +1309,CIERA Postdocs Advance to New Positions,2018-06-10,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,CIERA Stories,Data Science & Computing,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Data Science & Computing,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2017,,,, +1310,Brice Ménard Presents CIERA Interdisciplinary Colloquium,2018-06-04,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars,CIERA Stories,Event,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1312,CIERA Contributes to World Science Festival,2018-05-30,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1315,CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy,2017-09-01,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,,,, +1317,Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera,2017-09-15,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2017,,,, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars,CIERA Stories,Event,2017,,,, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,,,, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1318,CIERA Partners with The Chicago Network on STEM Event,2018-05-17,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,,,, +1324,Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting,2017-09-01,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Black Holes & Dead Stars,CIERA Stories,Science,2017,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,,,, +1343,CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies,2017-09-15,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2017,,,, +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2017,,,, +1346,New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way,2018-05-11,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2017,,,, +1347,Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran,2017-09-18,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,Life & Death of Stars,External Press,Science,2017,,,, +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,,,, +1351,PhD Student Alex Gurvich Awarded Two Prestigious Fellowships,2018-05-10,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,Galaxies & Cosmology,External Press,Achievement,2017,,,, +1352,CIERA Researchers Contribute to Record-setting Gravitational Wave Detection,2017-09-27,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2017,,,, +1353,Seven New Postdoctoral Researchers Join CIERA,2018-05-09,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,,,, +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",2017-10-03,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2017,,,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,External Press,Achievement,2017,,,, +1357,Professor Vicky Kalogera Elected to National Academy of Sciences,2018-05-02,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,Northwestern Press,Achievement,2017,,,, +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Achievement,2017,,,, +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",2018-05-02,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,Northwestern Press,Education,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,CIERA Stories,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1361,CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time,2017-10-16,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,,,, +1368,Graduate Student Katie Breivik Wins Blue Apple Prize at MRM,2017-10-14,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1370,CIERA’s Shane Larson Joins U.S. NASA LISA Study Team,2017-10-15,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories,Event,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,CIERA Stories,Outreach,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,Northwestern Press,Event,2017,,,, +1372,Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture,2017-10-05,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,Northwestern Press,Outreach,2017,,,, +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,,,, +1377,CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference,2017-10-21,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,Galaxies & Cosmology,CIERA Stories,Education,2017,,,, +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Achievement,2017,,,, +1379,CIERA Affiliate Member Magdalena Osburn Named Packard Fellow,2017-10-26,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,Northwestern Press,Interdisciplinary,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Achievement,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Black Holes & Dead Stars,Northwestern Press,Outreach,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Achievement,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Interdisciplinary,2017,,,, +1381,“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest,2017-11-02,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,Stellar Dynamics & Stellar Populations,Northwestern Press,Outreach,2017,,,, +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Event,2017,,,, +1382,Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia,2017-12-01,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2017,,,, +1390,REU Student José Flores Velazquez Presents Research on Capitol Hill,2018-04-20,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Education,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Event,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Education,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Event,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Education,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Event,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2017,,,, +1391,"Computational Research Day: April 10, 2018",2018-04-10,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2017,,,, +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Achievement,2017,,,, +1392,Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field,2018-04-05,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,Galaxies & Cosmology,External Press,Science,2017,,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Achievement,2017,,,, +1396,CIERA Hosts Workshop on Radio Astronomy,2018-03-29,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,CIERA Stories,Event,2017,,,, +1399,Embassy of Greece Interviews CIERA Director Vicky Kalogera,2018-03-27,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,External Press,Achievement,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2017,,,, +1400,Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium,2018-03-22,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2017,,,, +1411,Top Telescope Access for CIERA Researchers,2017-11-01,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,CIERA Stories,Science,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2017,,,, +1413,Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection,2017-11-10,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Event,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Interdisciplinary,2017,,,, +1415,Cosmos in Concert: Celestial Suite,2017-11-18,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,CIERA Stories,Outreach,2017,,,, +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Event,2017,,,, +1431,CIERA Graduate Students Host Field Trip for Girls 4 Science,2018-02-03,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,CIERA Stories,Outreach,2017,,,, +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,External Press,Achievement,2017,,,, +1436,Professor Claude-André Faucher-Giguère Named Cottrell Scholar,2018-02-12,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,Northwestern Press,Achievement,2017,,,, +1438,CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,CIERA Stories,Achievement,2017,,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Achievement,2017,,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Education,2017,,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Event,2017,,,, +1445,CIERA REU Students Present at 231st Meeting of the AAS,2018-01-31,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,CIERA Stories,Interdisciplinary,2017,,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1448,New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds,2018-01-30,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,Galaxies & Cosmology,Northwestern Press,Science,2017,,,, +1452,CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics,2018-01-10,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,Northwestern Press,Achievement,2017,,,, +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1453,Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy,2018-01-09,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1456,Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos,2018-01-09,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,Life & Death of Stars,External Press,Science,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Education,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Event,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Galaxies & Cosmology,CIERA Stories,Outreach,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2017,,,, +1460,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-12-06,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Black Holes & Dead Stars,Northwestern Press,Science,2017,,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Life & Death of Stars,External Press,Science,2017,,,, +1465,Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole,2017-12-01,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,Life & Death of Stars,Northwestern Press,Science,2017,,,, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars,CIERA Stories,Event,2017,,,, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Black Holes & Dead Stars,CIERA Stories,Outreach,2017,,,, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2017,,,, +1468,CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event,2017-11-28,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2017,,,, +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Achievement,2017,,,, +1490,CIERA Director Vicky Kalogera Meets with U.S. Congressman,2018-02-05,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,CIERA Stories,Outreach,2017,,,, +1493,Another Way for Stellar-mass Black Holes to Grow Larger,2018-08-17,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,Black Holes & Dead Stars,External Press,Science,2017,,,, +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Event,2018,,,, +1544,CIERA Celebrates a Decade Of Discovery,2018-09-13,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,Northwestern Press,Outreach,2018,,,, +1613,CIERA REU Panel Discussion Explores Careers in Astrophysics,2018-08-06,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,CIERA Stories,Education,2017,,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement,2017,,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2017,,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Interdisciplinary,2017,,,, +1615,2018 REU Students Present Their Research at Annual Poster Session,2018-08-24,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2017,,,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Data Science & Computing,2017,,,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Education,2017,,,, +1626,Announcing CIERA's 2018 Summer Undergraduate Researchers,2018-06-01,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,CIERA Stories,Interdisciplinary,2017,,,, +1668,Astronomers Witness Birth of New Star from Stellar Explosion,2018-09-20,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,Life & Death of Stars,External Press,Science,2018,,,, +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Achievement,2017,,,, +1681,Prof. Mel Ulmer Featured in Sky at Night Magazine,2018-08-24,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,External Press,Science,2017,,,, +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",2018-09-01,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,CIERA Stories,Achievement,2017,,,, +1698,CIERA Researchers Featured in “Humans of LIGO”,2018-09-20,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Event,2018,,,, +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",2018-09-27,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2018,,,, +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Event,2018,,,, +1914,CIERA Director Vicky Kalogera Presents Annual Public Lecture,2018-10-25,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,CIERA Stories,Outreach,2018,,,, +1928,CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,CIERA Stories,Achievement,2016,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Event,2018,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Interdisciplinary,2018,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,CIERA Stories,Outreach,2018,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Event,2018,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Interdisciplinary,2018,,,, +1930,The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space,2018-10-25,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,External Press,Outreach,2018,,,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Achievement,2018,,,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Event,2018,,,, +1935,CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide,2018-10-26,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,CIERA Stories,Outreach,2018,,,, +1940,CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine,2017-08-31,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Event,2018,,,, +1947,Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago,2018-10-26,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,CIERA Stories,Outreach,2018,,,, +1950,New Issue of “LIGO Magazine” Available,2017-08-31,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,CIERA Stories,Outreach,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,External Press,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,External Press,Outreach,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,Northwestern Press,Event,2016,,,, +2007,CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event,2017-08-22,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,Northwestern Press,Outreach,2016,,,, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Event,2016,,,, +2012,Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing,2017-08-15,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,CIERA Stories,Outreach,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Achievement,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Education,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Interdisciplinary,2016,,,, +2015,2017 REU Students Present Their Research at Annual Poster Session,2017-08-18,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2016,,,, +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Education,2016,,,, +2032,CIERA REU Students Discover Careers in Astronomy,2017-07-31,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,CIERA Stories,Event,2016,,,, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Education,2016,,,, +2034,CIERA's 2017 Summer Student Researchers,2017-07-30,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,CIERA Stories,Interdisciplinary,2016,,,, +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,External Press,Science,2016,,,, +2084,CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out,2017-07-31,https://ciera.northwestern.edu/2017/07/31/2084/,Life & Death of Stars,Northwestern Press,Science,2016,,,, +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,External Press,Science,2016,,,, +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",2017-07-31,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,Galaxies & Cosmology,Northwestern Press,Science,2016,,,, +2088,The Computing Power Behind CIERA’s Galaxy Formation Research,2017-07-20,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Event,2016,,,, +2089,Graduate Students Engage with 7th/8th Grade Students & Families,2017-07-01,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,CIERA Stories,Outreach,2016,,,, +2111,CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine,2018-11-02,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,Life & Death of Stars,External Press,Science,2018,,,, +2199,CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video,2017-06-12,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,Northwestern Press,Achievement,2016,,,, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2201,Graduate Student Fani Dosopoulou Receives Holt Award,2017-06-10,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Event,2016,,,, +2203,CIERA Hosts Supernovae: The LSST Revolution Workshop,2017-06-03,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +2209,LIGO Detects Gravitational Waves for Third Time,2017-06-02,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2016,,,, +2210,Astronomy Students Awarded Best Senior Thesis,2017-05-30,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Event,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Interdisciplinary,2016,,,, +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",2017-05-23,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,CIERA Stories,Outreach,2016,,,, +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Achievement,2016,,,, +2305,CIERA Postdocs Advance to New Positions,2017-05-19,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,CIERA Stories,Interdisciplinary,2016,,,, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,,,, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +2306,Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium,2017-05-18,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Event,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Interdisciplinary,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,CIERA Stories,Outreach,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Event,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Interdisciplinary,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,External Press,Outreach,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Event,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Interdisciplinary,2016,,,, +2311,Physics Makes Music in A Shout Across Time,2017-05-16,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,Northwestern Press,Outreach,2016,,,, +2321,Chicago Woman Magazine Features CIERA Director Prof. Kalogera,2017-05-06,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,External Press,Achievement,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2323,LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture,2017-05-03,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +2337,CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence,2017-05-01,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Data Science & Computing,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2016,,,, +2338,CIERA Contributes to Northwestern’s Computational Research Day,2017-04-30,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Interdisciplinary,2016,,,, +2340,Prof. Faucher-Giguère Receives NSF Honor for Young Faculty,2017-04-29,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2341,CIERA to Welcome New Postdocs in Fall 2017,2017-04-28,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2016,,,, +2343,Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space,2017-04-27,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,CIERA Stories,Achievement,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Education,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Event,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2344,CIERA Researchers Highlight Their Expertise in Seven Minutes or Less,2017-03-17,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,Life & Death of Stars,CIERA Stories,Outreach,2016,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Data Science & Computing,2018,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Event,2018,,,, +2408,CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker,2018-11-12,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,CIERA Stories,Interdisciplinary,2018,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2016,,,, +2437,New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin,2017-03-15,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2016,,,, +2439,CIERA Pilot Program Exposes Students to Astronomy Research,2017-03-13,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,CIERA Stories,Education,2016,,,, +2442,CIERA Professor Giles Novak Joins ALMA Science Advisory Committee,2017-03-12,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,CIERA Stories,Achievement,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +2444,Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium,2017-03-02,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2451,Media Seek Expertise on New Planets in TRAPPIST-1 System,2017-02-28,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,Exoplanets & The Solar System,External Press,Outreach,2016,,,, +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Education,2016,,,, +2515,CIERA Hosts Astronomy Day for Middle School Teachers,2017-02-25,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,CIERA Stories,Event,2016,,,, +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",2017-01-31,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,Life & Death of Stars,External Press,Science,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +2521,Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS,2017-01-30,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2016,,,, +2523,Supernova News from CIERA Professor Raffaella Margutti,2017-01-29,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,Life & Death of Stars,External Press,Science,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Education,2016,,,, +2525,CIERA REU Students Present at 229th Meeting of the AAS,2017-01-28,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2536,CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229,2017-01-27,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,CIERA Stories,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,CIERA Stories,Interdisciplinary,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,External Press,Achievement,2016,,,, +2549,Professor Mel Ulmer Discusses Geoengineering at AAS229,2017-01-20,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,External Press,Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2016,,,, +2551,Four New Postdoctoral Researchers Join CIERA,2017-01-01,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2016,,,, +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Achievement,2018,,,, +2642,Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine,2018-11-20,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,External Press,Outreach,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +2747,Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence,2018-11-26,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2018,,,, +2768,Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest,2016-12-31,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2016,,,, +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,External Press,Achievement,2018,,,, +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",2018-11-27,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,Northwestern Press,Achievement,2018,,,, +2819,Year-in-Review Honors for the LIGO Scientific Collaboration,2016-12-30,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Event,2016,,,, +2825,Prospect High School Hosts Panel of Women Astrophysicists from Northwestern,2016-12-29,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,CIERA Stories,Outreach,2016,,,, +2828,Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni,2016-12-28,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2016,,,, +2829,Postdocs & Graduate Students Present at Annual CIERA Research Jamboree,2016-12-15,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,CIERA Stories,Event,2016,,,, +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +2977,Four New Gravitational-Wave Detections,2018-12-03,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2016,,,, +2989,Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium,2016-12-01,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Interdisciplinary,2016,,,, +2995,Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio,2016-11-30,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,Northwestern Press,Achievement,2016,,,, +2996,Graduate Student Matthew Rickert Wins Reber Fellowship,2016-11-29,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Interdisciplinary,2016,,,, +2999,CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope,2016-11-28,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,Northwestern Press,Science,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Life & Death of Stars,CIERA Stories,Achievement,2016,,,, +3000,CIERA REU Students Present at PhysCon,2016-11-27,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,Life & Death of Stars,CIERA Stories,Education,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars,External Press,Achievement,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Black Holes & Dead Stars,External Press,Science,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2016,,,, +3002,Graduate Student Katie Breivik’s Paper Featured on AAS Nova,2016-11-26,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,Stellar Dynamics & Stellar Populations,External Press,Science,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Achievement,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Education,2016,,,, +3003,Rapid Fire Research Kicks Off,2016-11-01,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,CIERA Stories,Event,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Achievement,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +3005,CIERA REU Student Beverly Lowell Presents Research at Symposium,2016-10-31,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +3007,CIERA’s Board of Visitors Meets with Top University Officials,2016-10-30,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,CIERA Stories,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,CIERA Stories,Outreach,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,Northwestern Press,Event,2016,,,, +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",2016-10-17,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,Northwestern Press,Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2016,,,, +3059,Gravity Spy: The New Gravitational-Wave Project Using Citizen Science,2016-10-14,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2016,,,, +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Achievement,2016,,,, +3062,Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event,2016-10-03,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,CIERA Stories,Interdisciplinary,2016,,,, +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Achievement,2016,,,, +3063,Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship,2016-10-01,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,CIERA Stories,Education,2016,,,, +3065,Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics,2016-09-30,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,CIERA Stories,Achievement,2016,,,, +3208,CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship,2016-09-27,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Education,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Event,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Black Holes & Dead Stars,CIERA Stories,Outreach,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Education,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2016,,,, +3212,CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less,2016-09-14,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,Exoplanets & The Solar System,CIERA Stories,Outreach,2016,,,, +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Event,2016,,,, +3218,Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event,2016-09-13,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,Exoplanets & The Solar System,CIERA Stories,Outreach,2016,,,, +3224,CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,2016-09-02,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,CIERA Stories,Event,2016,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Achievement,2018,,,, +3225,“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest,2018-12-13,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2018,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,CIERA Stories,Achievement,2015,,,, +3250,Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe,2016-09-01,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,Life & Death of Stars,Northwestern Press,Achievement,2015,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2018,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2018,,,, +3254,Sasha Tchekhovskoy Receives High-Performance Computing Award,2018-12-18,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,Black Holes & Dead Stars,CIERA Stories,Science,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Achievement,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Education,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Interdisciplinary,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,CIERA Stories,Outreach,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Achievement,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Education,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Interdisciplinary,2018,,,, +3257,Shane Larson Wins Grand Prize in Instructables Optics Contest,2018-12-18,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,External Press,Outreach,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars,External Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Black Holes & Dead Stars,Northwestern Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Life & Death of Stars,External Press,Science,2018,,,, +3274,Birth of a Black Hole or Neutron Star Captured for First Time,2019-01-10,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2018,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Data Science & Computing,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Event,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Interdisciplinary,2015,,,, +3278,CIERA Hosts GNOME Data Analysis Bootcamp,2016-08-31,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,CIERA Stories,Science,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Education,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Event,2015,,,, +3280,REU Poster Session Celebrates Hard Work with Sweet Rewards,2016-08-30,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,CIERA Stories,Interdisciplinary,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Education,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Event,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Education,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Event,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Education,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Event,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2015,,,, +3301,NASA Illinois Space Grant Recipients Present Their Summer Research Projects,2016-08-29,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2015,,,, +3308,CIERA's 2016 Summer Student Researchers,2016-08-28,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Data Science & Computing,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Education,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Interdisciplinary,2015,,,, +3311,CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program,2016-08-27,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,CIERA Stories,Outreach,2015,,,, +3314,Physics and Astronomy Department Rising in Impact and Visibility,2016-07-30,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,Northwestern Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2015,,,, +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",2016-07-29,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Achievement,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Education,2015,,,, +3317,CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects,2016-07-14,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,CIERA Stories,Interdisciplinary,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2015,,,, +3329,Experts Share with CIERA REU Students at Career Panel Discussion,2016-07-13,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Education,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Event,2015,,,, +3330,CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night,2016-07-13,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,CIERA Stories,Outreach,2015,,,, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,CIERA Stories,Data Science & Computing,2015,,,, +3332,Data Science is Transforming Research at Northwestern-CIERA,2016-07-12,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,Northwestern Press,Data Science & Computing,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,,,, +3334,LIGO Team Announces Second Gravitational-Wave Event,2016-06-30,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,CIERA Stories,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,External Press,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Black Holes & Dead Stars,Northwestern Press,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3336,‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes,2016-06-29,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,,,, +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,CIERA Stories,Achievement,2015,,,, +3338,Jian Cao Receives Manufacturing Medal,2016-06-27,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,Northwestern Press,Achievement,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Education,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Event,2015,,,, +3339,Graduate Students Participate in High School Research Project Showcase,2016-06-24,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,CIERA Stories,Outreach,2015,,,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Education,2015,,,, +3343,CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café,2016-06-01,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,Galaxies & Cosmology,CIERA Stories,Event,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System,CIERA Stories,Achievement,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Exoplanets & The Solar System,CIERA Stories,Science,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Life & Death of Stars,CIERA Stories,Achievement,2015,,,, +3345,CIERA Researchers Help Build a Far-Infrared Camera for SOFIA,2016-05-29,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,Life & Death of Stars,CIERA Stories,Science,2015,,,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +3376,Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site,2019-01-28,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,Stellar Dynamics & Stellar Populations,External Press,Science,2018,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories,Event,2015,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,CIERA Stories,Outreach,2015,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,External Press,Event,2015,,,, +3398,CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,External Press,Outreach,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Event,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Interdisciplinary,2015,,,, +3400,Graduate Student Makes Cosmic Music,2016-05-25,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,CIERA Stories,Outreach,2015,,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Event,2018,,,, +3410,Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium,2019-01-15,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2018,,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Event,2018,,,, +3415,Total Lunar Eclipse Captivates on Frigid Night,2019-01-20,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,CIERA Stories,Outreach,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Education,2018,,,, +3421,Y.O.U. Students Enjoy Astronomy Visit,2019-01-22,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,CIERA Stories,Outreach,2018,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Data Science & Computing,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Education,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Event,2015,,,, +3426,IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference,2016-05-20,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,CIERA Stories,Outreach,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Education,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Event,2015,,,, +3428,Enthusiasm for Mercury Transit Despite Cloudy Skies,2016-05-19,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,CIERA Stories,Outreach,2015,,,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Event,2018,,,, +3442,Northwestern Hosts Regional Conference for Women in Physics,2019-01-21,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,CIERA Stories,Interdisciplinary,2018,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Education,2015,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Event,2015,,,, +3452,CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON,2016-05-10,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,CIERA Stories,Interdisciplinary,2015,,,, +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Education,2015,,,, +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Event,2015,,,, +3458,CIERA Researcher Brings The Galaxy to the Classroom,2016-05-06,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,CIERA Stories,Outreach,2015,,,, +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",2016-05-01,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Data Science & Computing,2018,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Interdisciplinary,2018,,,, +3507,CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources,2019-02-07,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,Life & Death of Stars,External Press,Science,2018,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Education,2015,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Event,2015,,,, +3529,Ripples in Spacetime at Take Our Daughters & Sons to Work Day,2016-04-30,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,CIERA Stories,Outreach,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,CIERA Stories,Event,2015,,,, +3532,CIERA Presentations at National Science Foundation Site Visit,2016-04-29,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,Northwestern Press,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Data Science & Computing,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,CIERA Stories,Interdisciplinary,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Data Science & Computing,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Event,2015,,,, +3534,CIERA Contributes to Northwestern’s Computational Research Day,2016-04-28,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,Northwestern Press,Interdisciplinary,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education,2015,,,, +3537,CIERA’s Carl Rodriguez Gives TEDx Talk,2016-04-25,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Life & Death of Stars,CIERA Stories,Science,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3539,CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship,2016-04-22,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2015,,,, +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event,2015,,,, +3542,Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium,2016-04-03,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2015,,,, +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",2016-03-31,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,External Press,Achievement,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,,,, +3551,CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café,2016-03-29,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Event,2015,,,, +3554,Kick-off of New Outreach Event Series: Astronomy on Tap Chicago,2016-03-01,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,CIERA Stories,Outreach,2015,,,, +3556,The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology,2016-02-28,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,CIERA Stories,Event,2015,,,, +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",2016-02-20,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2015,,,, +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2015,,,, +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2015,,,, +3562,CIERA Contributes to the Historic First Detection of Gravitational Waves,2016-02-15,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2015,,,, +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Education,2015,,,, +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Event,2015,,,, +3563,Largest Ever Event for Graduate Student Speaker Series,2016-02-11,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,CIERA Stories,Outreach,2015,,,, +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event,2015,,,, +3604,Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium,2016-02-04,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2015,,,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Achievement,2015,,,, +3609,CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS,2016-01-30,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,CIERA Stories,Event,2015,,,, +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",2016-01-29,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2015,,,, +3614,New Monthly Night at Dearborn Observatory with CIERA Astronomers,2016-01-27,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,CIERA Stories,Event,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Education,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Outreach,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,CIERA Stories,Science,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Education,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Outreach,2015,,,, +3617,American Astronomical Society to Lead WorldWide Telescope,2016-01-10,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,External Press,Science,2015,,,, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Achievement,2015,,,, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Education,2015,,,, +3620,CIERA Grad Student Brings the Stars to Her Hometown,2016-01-05,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,CIERA Stories,Outreach,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Achievement,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Data Science & Computing,2015,,,, +3622,Integrated Data Science Certificate in Development at CIERA,2016-01-01,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,CIERA Stories,Education,2015,,,, +3624,AAAS Fellow Jeremy Ward Visits CIERA,2015-12-06,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,CIERA Stories,Event,2015,,,, +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,External Press,Achievement,2018,,,, +3629,CIERA’s Raffaella Margutti Named Sloan Research Fellow,2019-02-19,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,Northwestern Press,Achievement,2018,,,, +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2018,,,, +3634,New York Times Discusses Importance of ‘Behind the Scenes’ Science,2019-02-20,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3637,Professors Novak & Sageman Named to 2015 Faculty Honor Roll,2015-11-30,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,CIERA Stories,Achievement,2015,,,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,,,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3639,CIERA's Shane Larson Participates in Gravitational Wave Google Hangout,2015-11-25,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2015,,,, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Education,2015,,,, +3642,CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff,2015-11-22,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Achievement,2015,,,, +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",2015-11-19,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,Northwestern Press,Interdisciplinary,2015,,,, +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3654,Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium,2015-11-13,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2015,,,, +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Education,2015,,,, +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Event,2015,,,, +3659,Stargazing with Local Dads and Daughters Outdoors Group,2015-11-11,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,CIERA Stories,Outreach,2015,,,, +3661,CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold,2015-11-10,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,CIERA Stories,Event,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Education,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Event,2015,,,, +3663,CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern,2015-11-03,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,Exoplanets & The Solar System,CIERA Stories,Outreach,2015,,,, +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Exoplanets & The Solar System,External Press,Achievement,2018,,,, +3717,CIERA’s Erin Cox Wins NRAO Dissertation Award,2019-02-22,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,Life & Death of Stars,External Press,Achievement,2018,,,, +3724,CIERA Professor Wen-Fai Fong Interviewed by Science News,2019-02-25,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +3732,CIERA Director Elected to LSSTC ExecBoard,2015-11-01,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,CIERA Stories,Achievement,2015,,,, +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Education,2015,,,, +3735,CIERA Summer Research Student Continues to Communicate Work,2015-10-31,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,Galaxies & Cosmology,CIERA Stories,Event,2015,,,, +3737,Dearborn Observatory Featured in Open House Chicago 2015,2015-10-25,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,External Press,Event,2015,,,, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2015,,,, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2015,,,, +3739,CIERA Director Awarded Prestigious APS 2016 Bethe Prize,2015-10-20,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2015,,,, +3741,CIERA’s Shane Larson Elected APS Fellow,2015-10-15,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,CIERA Stories,Achievement,2015,,,, +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2015,,,, +3743,2015 Midwest Relativity Meeting Hosted by CIERA,2015-10-05,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2015,,,, +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Education,2015,,,, +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Event,2015,,,, +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",2015-09-30,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,CIERA Stories,Outreach,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Education,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Event,2015,,,, +3755,CIERA Graduate Students Speak at Local High School’s Women in STEM Event,2015-11-25,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,CIERA Stories,Outreach,2015,,,, +3757,CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics,2015-11-22,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Education,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Event,2015,,,, +3758,Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day,2015-09-13,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,CIERA Stories,Outreach,2015,,,, +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Education,2015,,,, +3760,CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium,2015-09-12,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,CIERA Stories,Event,2015,,,, +3784,CIERA's 2015 Summer Student Researchers,2015-08-31,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,CIERA Stories,Education,2014,,,, +3787,CIERA Director Vicky Kalogera Speaks to Office for Research Staff,2015-08-30,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,CIERA Stories,Event,2014,,,, +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories,Science,2014,,,, +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,External Press,Science,2014,,,, +3791,CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought,2015-07-30,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,Black Holes & Dead Stars,Northwestern Press,Science,2014,,,, +3793,Immediate Opening for Graduate Student: CIERA Keck Foundation Grant,2015-07-27,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +3795,CIERA Undergraduate Researcher Accepted to Ph.D. Programs,2015-07-22,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,CIERA Stories,Achievement,2014,,,, +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,,,, +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,CIERA Stories,Science,2014,,,, +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,External Press,Achievement,2014,,,, +3797,CIERA Research Group Receives Time with Hubble Space Telescope,2015-07-20,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,Galaxies & Cosmology,External Press,Science,2014,,,, +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Education,2014,,,, +3799,Astronomy Club of the College of DuPage Visits CIERA,2015-07-12,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,CIERA Stories,Event,2014,,,, +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,External Press,Achievement,2014,,,, +3801,W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer,2015-07-04,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,Exoplanets & The Solar System,External Press,Science,2014,,,, +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Education,2014,,,, +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Event,2014,,,, +3803,CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics,2015-06-30,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,CIERA Stories,Outreach,2014,,,, +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",2019-02-27,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,External Press,Achievement,2018,,,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Education,2018,,,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Interdisciplinary,2018,,,, +3817,Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs,2019-03-10,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,CIERA Stories,Outreach,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Data Science & Computing,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Education,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Interdisciplinary,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,External Press,Science,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Data Science & Computing,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Education,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Interdisciplinary,2018,,,, +3823,IDEAS Fellows Contribute to New Seismology Citizen Science Project,2019-03-13,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,Northwestern Press,Science,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Data Science & Computing,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Education,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Interdisciplinary,2018,,,, +3838,"Student-led Data Expeditions with ""Vault""",2019-03-25,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,CIERA Stories,Outreach,2018,,,, +3843,Eight New Postdoctoral Researchers Join CIERA,2019-04-01,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,CIERA Stories,Achievement,2018,,,, +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Black Holes & Dead Stars,External Press,Achievement,2018,,,, +3856,CIERA Graduate Student Michael Zevin Research Featured in AAS Nova,2019-03-28,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Data Science & Computing,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Interdisciplinary,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Outreach,2018,,,, +3859,You’re Invited! Humans Needed to Help Find Star Clusters,2019-03-29,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,Stellar Dynamics & Stellar Populations,External Press,Science,2018,,,, +3868,CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves,2019-04-01,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Event,2018,,,, +3871,Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series,2019-04-02,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,Northwestern Press,Outreach,2018,,,, +3872,Professor Margutti’s Paper Among Top Ten in 2018,2019-04-03,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +3881,Illinois Congressman Visits CIERA,2015-06-27,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,CIERA Stories,Outreach,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Education,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Event,2014,,,, +3883,CIERA Helps the Adler Planetarium Celebrate the Summer of Science!,2015-06-15,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,CIERA Stories,Outreach,2014,,,, +3885,NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden,2015-06-10,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,,,, +3887,CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article,2015-06-05,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,Galaxies & Cosmology,CIERA Stories,Science,2014,,,, +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Achievement,2014,,,, +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Interdisciplinary,2014,,,, +3895,CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC),2015-06-01,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,CIERA Stories,Science,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Education,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Event,2014,,,, +3899,Neil deGrasse Tyson Ignites CIERA Annual Public Lecture,2015-05-15,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,CIERA Stories,Outreach,2014,,,, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Education,2014,,,, +3921,Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium,2015-04-30,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,CIERA Stories,Event,2014,,,, +3931,CIERA Fellow Geller Wins First Prize in Data Visualization Challenge,2015-04-29,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Black Holes & Dead Stars,External Press,Science,2018,,,, +3934,Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week,2019-04-15,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +3939,CIERA Faculty Comment on World’s First Image of a Black Hole,2019-04-16,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2018,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Event,2014,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Interdisciplinary,2014,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,CIERA Stories,Science,2014,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Event,2014,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Interdisciplinary,2014,,,, +3941,CIERA Co-Sponsors Computational Research Day Poster Session,2015-04-25,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,Northwestern Press,Science,2014,,,, +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +3943,Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole,2015-04-24,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,Life & Death of Stars,CIERA Stories,Science,2014,,,, +3945,Two NSF Graduate Fellowships Awarded to NU Astronomy Students,2015-04-18,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Achievement,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Data Science & Computing,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,CIERA Stories,Interdisciplinary,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Achievement,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Data Science & Computing,2014,,,, +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",2015-04-10,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,External Press,Interdisciplinary,2014,,,, +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Achievement,2018,,,, +3949,CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research,2019-04-18,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,CIERA Stories,Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Education,2018,,,, +3951,CIERA REU Students Present at 233rd Meeting of the AAS,2019-01-31,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,CIERA Stories,Event,2018,,,, +3964,CIERA’s Paul Williams on Studying Star Formation in Antarctica,2019-04-19,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,Galaxies & Cosmology,CIERA Stories,Science,2018,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Education,2014,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Event,2014,,,, +3970,Middle School Girls on a Mission to Space!,2015-03-31,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,CIERA Stories,Outreach,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Achievement,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Event,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,CIERA Stories,Outreach,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Achievement,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Event,2014,,,, +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",2015-03-29,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,Northwestern Press,Outreach,2014,,,, +3974,CIERA to Welcome Four New Postdocs in Fall 2015,2015-03-19,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,CIERA Stories,Achievement,2014,,,, +3976,Summer Undergraduate Student Success Stories: CIERA Alumni,2015-03-01,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,CIERA Stories,Education,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Achievement,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Data Science & Computing,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2014,,,, +3978,CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report,2015-02-28,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,Exoplanets & The Solar System,Northwestern Press,Science,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Event,2014,,,, +3980,From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium,2015-02-26,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,CIERA Stories,Science,2014,,,, +3991,LSST Project Accepts New Mirror Surfaces,2015-02-27,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,External Press,Science,2014,,,, +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",2015-02-20,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,External Press,Science,2014,,,, +4008,CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory,2015-02-17,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,Exoplanets & The Solar System,Northwestern Press,Science,2014,,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Achievement,2014,,,, +4013,CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award,2015-02-05,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,Black Holes & Dead Stars,CIERA Stories,Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Education,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Event,2014,,,, +4016,Join Einstein Evenings throughout 2015,2015-01-25,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,CIERA Stories,Outreach,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Achievement,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Event,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,CIERA Stories,Science,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Achievement,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Event,2014,,,, +4018,Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror,2015-01-11,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,External Press,Science,2014,,,, +4028,Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks,2014-12-15,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,Galaxies & Cosmology,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Education,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Event,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Interdisciplinary,2014,,,, +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",2014-11-16,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,CIERA Stories,Outreach,2014,,,, +4040,A New Infrared Camera for Exoplanet Imaging,2019-04-29,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,Exoplanets & The Solar System,CIERA Stories,Science,2018,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Achievement,2014,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Outreach,2014,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,CIERA Stories,Science,2014,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Achievement,2014,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Outreach,2014,,,, +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",2014-11-06,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,Northwestern Press,Science,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Achievement,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Education,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Event,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,CIERA Stories,Outreach,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Achievement,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Education,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Event,2014,,,, +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",2014-11-02,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,Northwestern Press,Outreach,2014,,,, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Event,2014,,,, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2014,,,, +4052,CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics,2014-10-31,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,Black Holes & Dead Stars,CIERA Stories,Science,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Education,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Event,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Outreach,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,CIERA Stories,Science,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Education,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Event,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Outreach,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,External Press,Science,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Education,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Event,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Outreach,2014,,,, +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",2014-10-27,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,Northwestern Press,Science,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Achievement,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Education,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,CIERA Stories,Event,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Achievement,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Education,2014,,,, +4069,Prof. Dave Meyer Delivers New Video Course on Space Astronomy,2014-10-20,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,External Press,Event,2014,,,, +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Achievement,2014,,,, +4071,CIERA Professor Fred Rasio Appointed to KITP Advisory Board,2014-10-03,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,CIERA Stories,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,CIERA Stories,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Galaxies & Cosmology,Northwestern Press,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,CIERA Stories,Science,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Achievement,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Interdisciplinary,2014,,,, +4073,CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”,2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,Life & Death of Stars,Northwestern Press,Science,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Education,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Event,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,CIERA Stories,Outreach,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Education,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Event,2014,,,, +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",2014-09-30,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,Northwestern Press,Outreach,2014,,,, +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Achievement,2014,,,, +4081,CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters,2014-09-25,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,Exoplanets & The Solar System,CIERA Stories,Science,2014,,,, +4082,Professor Meyer Named to 2014 Faculty Honor Roll,2014-09-09,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,CIERA Stories,Achievement,2014,,,, +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2013,,,, +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2013,,,, +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2013,,,, +4085,New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone,2014-08-31,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2013,,,, +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Event,2013,,,, +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",2014-08-27,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,CIERA Stories,Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories,Achievement,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,CIERA Stories,Science,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,External Press,Achievement,2013,,,, +4089,National Science Foundation Agrees to Fund LSST Project,2014-08-22,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,External Press,Science,2013,,,, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Education,2013,,,, +4091,CIERA's 2014 Summer Student Researchers,2014-08-17,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,CIERA Stories,Outreach,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Education,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Event,2013,,,, +4093,CIERA Hosts Galaxy Formation Workshop,2014-08-01,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,Galaxies & Cosmology,CIERA Stories,Science,2013,,,, +4096,LIGO on Lookout for 8 Sources of Gravitational Waves,2019-05-06,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4100,First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole,2019-05-02,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4127,The Science that Shared Buzz Aldrin’s Space Selfie,2014-07-27,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,External Press,Science,2013,,,, +4129,CIERA Director Elected Trustee of Aspen Center for Physics,2014-07-15,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,CIERA Stories,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Event,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Outreach,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,CIERA Stories,Science,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Achievement,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Event,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Outreach,2013,,,, +4130,CIERA’s Shane Larson Called In As Expert On “Cityhenge”,2014-07-10,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,External Press,Science,2013,,,, +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Achievement,2013,,,, +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Education,2013,,,, +4132,Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research,2014-07-06,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,CIERA Stories,Interdisciplinary,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,CIERA Stories,Science,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,External Press,Achievement,2013,,,, +4133,CIERA Postdoc Explores Black Holes in BBC Magazine Feature,2014-07-01,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,Black Holes & Dead Stars,External Press,Science,2013,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Education,2018,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Event,2018,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Interdisciplinary,2018,,,, +4141,Lakota Stellar STEM Weekend,2019-05-28,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,CIERA Stories,Outreach,2018,,,, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,,,, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2013,,,, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,External Press,Achievement,2013,,,, +4150,CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival,2014-06-30,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,Black Holes & Dead Stars,External Press,Interdisciplinary,2013,,,, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2013,,,, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2013,,,, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2013,,,, +4151,Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites,2014-06-15,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Achievement,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Education,2013,,,, +4154,Nine Students Awarded Funding from Weinberg College and Illinois Space Grant,2014-06-01,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,CIERA Stories,Outreach,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Education,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Event,2013,,,, +4155,CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students,2014-05-31,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,CIERA Stories,Outreach,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Achievement,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Event,2013,,,, +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",2014-05-29,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,CIERA Stories,Outreach,2013,,,, +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2018,,,, +4164,Lindsey Byrne Awarded DOE Graduate Fellowship,2019-06-04,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Galaxies & Cosmology,External Press,Achievement,2018,,,, +4167,Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow,2019-06-04,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,Stellar Dynamics & Stellar Populations,External Press,Achievement,2018,,,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Achievement,2018,,,, +4170,Database Celebrates the Presence of African American Women in Physics,2019-06-04,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,External Press,Interdisciplinary,2018,,,, +4172,What Next for Gravitational Wave Detection?,2019-06-04,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2018,,,, +4174,Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium,2019-03-15,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Event,2018,,,, +4177,Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium,2019-04-01,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,CIERA Stories,Interdisciplinary,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,External Press,Science,2018,,,, +4195,Most-detailed Simulations of Black Hole Solve Longstanding Mystery,2019-06-06,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,Black Holes & Dead Stars,Northwestern Press,Science,2018,,,, +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Achievement,2013,,,, +4200,Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop,2014-05-27,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,CIERA Stories,Interdisciplinary,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Education,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Event,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,CIERA Stories,Science,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Education,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Event,2013,,,, +4202,CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast,2014-05-25,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,Black Holes & Dead Stars,External Press,Science,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Achievement,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Education,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Event,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Interdisciplinary,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,CIERA Stories,Outreach,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Achievement,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Education,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Event,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Interdisciplinary,2013,,,, +4204,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,External Press,Outreach,2013,,,, +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Event,2018,,,, +4209,Erik Curiel on Inconsistent Definitions of a Black Hole,2019-05-09,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,CIERA Stories,Interdisciplinary,2018,,,, +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",2019-06-19,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4234,Fred Rasio Receives 2019 Brouwer Award,2019-06-20,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,Northwestern Press,Achievement,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Event,2018,,,, +4239,Scientists Gather to Plan Flight of Balloon-borne Telescope,2019-06-14,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,CIERA Stories,Science,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2018,,,, +4242,Monica Gallegos Garcia Wins Ford Foundation Fellowship,2019-06-21,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2018,,,, +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Event,2018,,,, +4244,The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom,2019-05-13,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,CIERA Stories,Interdisciplinary,2018,,,, +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Event,2018,,,, +4247,The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz,2019-05-29,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,CIERA Stories,Interdisciplinary,2018,,,, +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Achievement,2018,,,, +4254,High School Researcher Takes Gold at State Science Fair,2019-06-21,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,CIERA Stories,Education,2018,,,, +4280,Aprajita Hajela Wins NASA Future Investigator Award,2019-07-10,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2018,,,, +4283,Northwestern Leads Effort to Detect New Types of Cosmic Events,2019-07-17,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Black Holes & Dead Stars,External Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4291,20 Years of Chandra X-ray Observatory,2019-07-25,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,Life & Death of Stars,External Press,Science,2018,,,, +4328,SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space,2019-08-15,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2018,,,, +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Black Holes & Dead Stars,External Press,Science,2018,,,, +4336,"""Astronomers probably just saw a black hole swallow a dead star""",2019-08-19,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2018,,,, +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Event,2018,,,, +4354,CIERA Celebrates Apollo 11,2019-07-26,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,CIERA Stories,Outreach,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Education,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Event,2018,,,, +4357,Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules,2019-07-18,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,CIERA Stories,Outreach,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Data Science & Computing,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Event,2018,,,, +4359,Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’,2019-08-23,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,CIERA Stories,Interdisciplinary,2018,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4368,Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar,2019-09-05,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Outreach,2018,,,, +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",2019-08-28,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,External Press,Science,2018,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Black Holes & Dead Stars,Northwestern Press,Science,2019,,,, +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",2019-09-09,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4406,Announcing CIERA’s 2019 Summer Undergraduate Researchers,2019-06-01,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,CIERA Stories,Education,2018,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars,External Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Black Holes & Dead Stars,Northwestern Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Galaxies & Cosmology,External Press,Science,2019,,,, +4411,"""Giant balloon-like structures discovered at center of Milky Way""",2019-09-12,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,Galaxies & Cosmology,Northwestern Press,Science,2019,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Education,2018,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Event,2018,,,, +4435,Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session,2019-08-02,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,CIERA Stories,Outreach,2018,,,, +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Education,2013,,,, +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Event,2013,,,, +4458,CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase,2014-06-03,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,CIERA Stories,Outreach,2013,,,, +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Data Science & Computing,2013,,,, +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Event,2013,,,, +4460,Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy,2014-05-08,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,CIERA Stories,Interdisciplinary,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories,Achievement,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,CIERA Stories,Outreach,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,Northwestern Press,Achievement,2013,,,, +4468,CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields,2014-05-04,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,Northwestern Press,Outreach,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Achievement,2013,,,, +4469,Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee,2014-05-02,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,CIERA Stories,Outreach,2013,,,, +4471,Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship,2014-05-01,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,CIERA Stories,Achievement,2013,,,, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Event,2013,,,, +4472,CIERA Sponsors Poster Session at Northwestern's Computational Research Day,2014-04-30,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,CIERA Stories,Interdisciplinary,2013,,,, +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Achievement,2013,,,, +4474,CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair,2014-04-27,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,Black Holes & Dead Stars,CIERA Stories,Event,2013,,,, +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Uncategorized,2013,,,, +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",2014-04-25,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Uncategorized,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Event,2013,,,, +4480,Total Lunar Eclipse April 15th,2014-04-20,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,CIERA Stories,Outreach,2013,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Data Science & Computing,2019,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Education,2019,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Event,2019,,,, +4493,IDEAS Trainees Attend the Grace Hopper Celebration 2019,2019-10-10,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,CIERA Stories,Interdisciplinary,2019,,,, +4531,"""A star has been flickering for years – and researchers think they've figured out why""",2019-10-31,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,Life & Death of Stars,External Press,Science,2019,,,, +4534,CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS,2019-11-01,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,Northwestern Press,Achievement,2019,,,, +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,External Press,Science,2019,,,, +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",2019-11-12,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,Exoplanets & The Solar System,Northwestern Press,Science,2019,,,, +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Achievement,2018,,,, +4577,Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award,2019-04-15,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,CIERA Stories,Education,2018,,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Data Science & Computing,2019,,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Education,2019,,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Event,2019,,,, +4579,IDEAS & CIERA Host NSF Research Traineeship National Meeting,2019-09-30,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,CIERA Stories,Interdisciplinary,2019,,,, +4591,CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,CIERA Stories,Achievement,2018,,,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Education,2019,,,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Event,2019,,,, +4592,STEM Panel Discussion Held at Lincoln Park High School,2019-10-08,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,CIERA Stories,Outreach,2019,,,, +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Event,2019,,,, +4594,Dearborn Observatory on View at Open House Chicago 2019,2019-10-21,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,CIERA Stories,Outreach,2019,,,, +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Event,2019,,,, +4608,Priya Natarajan Presents 11th Annual CIERA Public Lecture,2019-10-25,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,Galaxies & Cosmology,CIERA Stories,Outreach,2019,,,, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Event,2013,,,, +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",2014-04-04,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,Exoplanets & The Solar System,CIERA Stories,Outreach,2013,,,, +4636,CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows,2019-11-26,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,Northwestern Press,Achievement,2019,,,, +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Black Holes & Dead Stars,CIERA Stories,Science,2019,,,, +4641,Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought,2019-12-02,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2019,,,, +4650,An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light,2019-12-09,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4656,First Discoveries by the Young Supernova Experiment,2019-12-08,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,Life & Death of Stars,External Press,Science,2019,,,, +4658,Faucher-Giguère Named Highly Cited Researcher,2019-12-02,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,Northwestern Press,Achievement,2019,,,, +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,CIERA Stories,Science,2019,,,, +4659,"CIERA Observer's Image Gets ""Starlinked""",2019-11-18,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,Galaxies & Cosmology,External Press,Science,2019,,,, +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Achievement,2019,,,, +4662,Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy,2019-11-01,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,Black Holes & Dead Stars,Northwestern Press,Science,2019,,,, +4713,This Exoplanet is in a Death Dance with its Star,2020-01-13,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,Exoplanets & The Solar System,External Press,Science,2019,,,, +4762,CIERA Postdocs Advance to New Positions,2019-09-01,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,CIERA Stories,Achievement,2018,,,, +4763,Using Gravitational Waves to See Inside Stars,2019-12-09,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars,CIERA Stories,Event,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Exoplanets & The Solar System,CIERA Stories,Event,2019,,,, +4765,Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’,2019-12-10,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Data Science & Computing,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Event,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Interdisciplinary,2019,,,, +4769,"New Year, New CIERA Open House Event",2020-01-22,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,CIERA Stories,Outreach,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Galaxies & Cosmology,Northwestern Press,Science,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4794,The Sky is No Limit,2020-02-19,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Galaxies & Cosmology,Northwestern Press,Science,2019,,,, +4800,Cosmic ‘candy cane’ spotted in inner Milky Way,2019-12-18,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Event,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Event,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Event,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2019,,,, +4816,CIERA REU Students Present at 235th Meeting of the AAS,2020-01-10,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Data Science & Computing,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Event,2019,,,, +4829,Students from Chicago’s Off the Street Club Visit Dearborn Observatory,2020-02-18,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,CIERA Stories,Outreach,2019,,,, +4833,Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows,2020-02-25,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,External Press,Achievement,2019,,,, +4855,Coronavirus/COVID-19 Update,2020-03-13,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,CIERA Stories,Uncategorized,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Data Science & Computing,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Education,2019,,,, +4863,Proposal Workshop for New Observatory Held at CIERA,2020-02-06,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,CIERA Stories,Event,2019,,,, +4870,Coronavirus/COVID-19 Update,2020-03-25,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,CIERA Stories,Uncategorized,2019,,,, +4875,Seven New Postdoctoral Researchers Join CIERA,2020-04-01,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,CIERA Stories,Achievement,2019,,,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Achievement,2019,,,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Data Science & Computing,2019,,,, +4881,CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World,2020-04-09,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,External Press,Science,2019,,,, +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Interdisciplinary,2019,,,, +4883,Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight,2020-04-09,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,Northwestern Press,Outreach,2019,,,, +4888,Prof. Margutti Receives NSF Honor for Junior Faculty,2020-03-26,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,Northwestern Press,Achievement,2019,,,, +4889,A Supernova that Outshines All Others,2020-04-13,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,Life & Death of Stars,External Press,Science,2019,,,, +4899,Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy,2020-04-20,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4901,NASA Hubble Fellowship Awarded to Michael Zevin,2020-04-21,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,CIERA Stories,Achievement,2019,,,, +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",2020-04-21,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,CIERA Stories,Uncategorized,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4910,Beverly Lowell Awarded NSF Graduate Research Fellowship,2020-04-01,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2019,,,, +4912,Danat Issa Awarded Frontera Computational Science Fellowship,2020-03-24,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2019,,,, +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2019,,,, +4915,NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”,2020-05-09,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,Life & Death of Stars,External Press,Achievement,2019,,,, +4921,Using Gravitational Waves to Approximate Pi,2020-05-19,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2019,,,, +4924,Astrophysicists Capture New Class of Transient Objects,2020-05-26,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Achievement,2019,,,, +4934,CIERA to Host National REU Leaders,2020-05-27,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,CIERA Stories,Education,2019,,,, +4937,Undergraduate Andrew Bowen Receives AAS Chambliss Award,2020-05-07,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,,,, +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Education,2019,,,, +4942,Remote Learning Resources Available on New Reach for the Stars Website,2020-05-28,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,CIERA Stories,Outreach,2019,,,, +4944,Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM,2020-06-01,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,CIERA Stories,Achievement,2019,,,, +4948,Black Lives Matter,2020-06-06,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,CIERA Stories,Uncategorized,2019,,,, +4964,New Mystery Merger Detected by LIGO-Virgo,2020-06-23,https://ciera.northwestern.edu/2020/06/23/gw190814/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2019,,,, +4977,CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize,2020-06-18,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,CIERA Stories,Achievement,2019,,,, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Black Holes & Dead Stars,CIERA Stories,Achievement,2019,,,, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4978,CIERA Ranks #1 for National Postdoctoral Fellowships,2020-05-29,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2019,,,, +4982,Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award,2020-06-19,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2019,,,, +4998,Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected,2020-07-14,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5003,Spectacular ultraviolet flash may finally explain how white dwarfs explode,2020-07-23,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5016,Calcium-rich supernova examined with X-rays for first time,2020-08-05,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2019,,,, +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Achievement,2019,,,, +5025,4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller,2020-08-06,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,Life & Death of Stars,CIERA Stories,Education,2019,,,, +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Black Holes & Dead Stars,CIERA Stories,Science,2019,,,, +5038,Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not,2020-09-01,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2019,,,, +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Black Holes & Dead Stars,Northwestern Press,Science,2020,,,, +5070,Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole,2020-09-02,https://ciera.northwestern.edu/2020/09/02/gw190521/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5078,CIERA Postdocs Move on to New Positions,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,CIERA Stories,Achievement,2020,,,, +5094,Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists,2020-09-08,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,Galaxies & Cosmology,CIERA Stories,Science,2020,,,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,,,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5112,CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet,2020-09-17,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Education,2019,,,, +5114,CIERA High School Summer Research Experience in Astronomy Goes Remote!,2020-08-14,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,CIERA Stories,Outreach,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Education,2019,,,, +5129,CIERA's REU Program Goes Virtual!,2020-08-31,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,CIERA Stories,Interdisciplinary,2019,,,, +5382,Update on Initiative for Social Justice,2020-10-01,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,CIERA Stories,Uncategorized,2020,,,, +5446,The Low Spin of the Milky Way's Supermassive Black Hole,2020-10-20,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,,,, +5454,Star 'Spaghettified' by a Supermassive Black Hole,2020-10-12,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,Black Holes & Dead Stars,CIERA Stories,Science,2020,,,, +5523,Black hole ‘family portrait’ is most detailed to date,2020-10-29,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +5526,Statement of Principles and Values,2020-10-28,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,CIERA Stories,Uncategorized,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Black Holes & Dead Stars,CIERA Stories,Education,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Exoplanets & The Solar System,CIERA Stories,Education,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Galaxies & Cosmology,CIERA Stories,Education,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Life & Death of Stars,CIERA Stories,Education,2020,,,, +5535,Growing Library of Educational Brochures by CIERA Astronomers,2020-10-30,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2020,,,, +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Event,2020,,,, +5537,Shane Larson Presents Virtual Public Lecture on the Milky Way,2020-11-03,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,CIERA Stories,Outreach,2020,,,, +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Black Holes & Dead Stars,External Press,Science,2020,,,, +5578,NASA's Hubble Sees Unexplained Brightness from Colossal Explosion,2020-11-12,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Galaxies & Cosmology,CIERA Stories,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Life & Death of Stars,CIERA Stories,Science,2020,,,, +5606,Rare Short Gamma-ray Burst Discovered in Galaxy Cluster,2020-11-23,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2020,,,, +5624,André de Gouvêa Selected as 2020 AAAS Fellow,2020-11-30,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,CIERA Stories,Achievement,2020,,,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,,,, +5641,Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy,2020-11-16,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2020,,,, +5678,Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago,2020-12-14,https://ciera.northwestern.edu/2020/12/14/christmas-star/,Exoplanets & The Solar System,External Press,Outreach,2020,,,, +5726,Faucher-Giguère Named Highly Cited Researcher for Second Year,2020-12-21,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,Galaxies & Cosmology,External Press,Achievement,2020,,,, +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Interdisciplinary,2020,,,, +5732,The Upside of Volatile Space Weather,2020-12-21,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,Exoplanets & The Solar System,Northwestern Press,Science,2020,,,, +5759,2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi,2020-10-25,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5761,String of Stars in Milky Way are Related,2021-01-15,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,Stellar Dynamics & Stellar Populations,Northwestern Press,Science,2020,,,, +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Black Holes & Dead Stars,External Press,Science,2020,,,, +5795,‘Unicorn’ Discovery Points to a New Population of Black Holes,2021-01-28,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars,CIERA Stories,Event,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Black Holes & Dead Stars,CIERA Stories,Outreach,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Exoplanets & The Solar System,CIERA Stories,Event,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Exoplanets & The Solar System,CIERA Stories,Outreach,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Life & Death of Stars,CIERA Stories,Event,2020,,,, +5806,CIERA Astronomy LIVE Debuts on YouTube,2021-02-01,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,Life & Death of Stars,CIERA Stories,Outreach,2020,,,, +5842,Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos,2021-02-18,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +5863,Major Award for Gravitational Wave Researcher Christopher Berry,2021-03-15,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Black Holes & Dead Stars,External Press,Science,2020,,,, +5864,New Kind of Space Explosion Reveals the Birth of a Black Hole,2021-03-12,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,Life & Death of Stars,External Press,Science,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Black Holes & Dead Stars,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Exoplanets & The Solar System,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Galaxies & Cosmology,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +5883,Welcome New CIERA Postdoctoral Researchers,2021-03-18,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +5904,Prof. Fong Receives NSF Honor for Young Faculty,2021-03-24,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,Life & Death of Stars,Northwestern Press,Achievement,2020,,,, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2020,,,, +5906,New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase,2021-03-25,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2020,,,, +5920,200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics,2021-04-02,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2020,,,, +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Black Holes & Dead Stars,Northwestern Press,Achievement,2020,,,, +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,,,, +5939,Vicky Kalogera Named 2021 Guggenheim Fellow,2021-04-12,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,Life & Death of Stars,Northwestern Press,Achievement,2020,,,, +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Achievement,2020,,,, +5958,NSF Graduate Fellowships Awarded to Astronomy Students,2021-04-19,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,CIERA Stories,Education,2020,,,, +5979,Vicky Kalogera Elected to American Academy of Arts and Sciences,2021-04-23,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2020,,,, +6008,Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs,2021-04-28,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,Life & Death of Stars,CIERA Stories,Science,2020,,,, +6010,American Physical Society Elects Professors Margutti and Larson to Committees,2021-04-17,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,CIERA Stories,Achievement,2020,,,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Event,2020,,,, +6028,James Kasting Presents Joint Interdisciplinary Colloquium,2021-05-03,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2020,,,, +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,External Press,Science,2020,,,, +6033,‘Oddball supernova’ appears strangely cool before exploding,2021-05-05,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,Life & Death of Stars,Northwestern Press,Science,2020,,,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Education,2020,,,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Interdisciplinary,2020,,,, +6073,Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career,2021-05-17,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,Northwestern Press,Outreach,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,External Press,Data Science & Computing,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,External Press,Science,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Galaxies & Cosmology,Northwestern Press,Science,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,External Press,Data Science & Computing,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,External Press,Science,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,Northwestern Press,Data Science & Computing,2020,,,, +6078,Stunning simulation of stars being born is most realistic ever,2021-05-17,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,Life & Death of Stars,Northwestern Press,Science,2020,,,, +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Galaxies & Cosmology,CIERA Stories,Achievement,2020,,,, +6083,Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship,2021-05-18,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2020,,,, +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,External Press,Science,2020,,,, +6094,Intense radio blasts traced to galaxies’ spiral arms,2021-05-20,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,Life & Death of Stars,Northwestern Press,Science,2020,,,, +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars,External Press,Science,2020,,,, +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Black Holes & Dead Stars,Northwestern Press,Science,2020,,,, +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2020,,,, +6180,Astrophysicists detect first black hole-neutron star mergers,2021-06-29,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2020,,,, +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Data Science & Computing,2020,,,, +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",2021-08-16,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,Northwestern Press,Interdisciplinary,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars,Northwestern Press,Data Science & Computing,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Black Holes & Dead Stars,Northwestern Press,Science,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Galaxies & Cosmology,Northwestern Press,Data Science & Computing,2020,,,, +6267,New simulation shows how galaxies feed their supermassive black holes,2021-08-17,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,Galaxies & Cosmology,Northwestern Press,Science,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Achievement,2020,,,, +6326,CIERA Members Win 2nd Place for JSPG Policy Position Paper,2021-08-30,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,Northwestern Press,Interdisciplinary,2020,,,, +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +6358,Luke Kelley Awarded Cottrell Fellowship,2021-09-08,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Education,2021,,,, +6435,Another Successful CIERA REU Program in the Books!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,CIERA Stories,Interdisciplinary,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Education,2021,,,, +6436,REACH Continues to Grow!,2021-10-20,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,CIERA Stories,Outreach,2021,,,, +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,,,, +6553,Professor Wen-fai Fong Receives Prestigious Packard Fellowship,2021-10-14,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",2021-10-20,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +6606,CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program,2021-11-01,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,,,, +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2021,,,, +6642,Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog,2021-11-08,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,,,, +6662,CIERA Welcomes New Faculty Member Adam Miller,2021-09-01,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,Life & Death of Stars,CIERA Stories,Achievement,2020,,,, +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event,2021,,,, +6664,Phil Plait Presents 12th Annual CIERA Public Lecture,2021-10-21,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Outreach,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars,Northwestern Press,Achievement,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Black Holes & Dead Stars,Northwestern Press,Science,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,,,, +6747,Looking forward to a huge leap in space exploration,2021-12-17,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6776,Astronomers capture red supergiant’s death throes,2022-01-06,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",2022-01-26,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6871,Wen-fai Fong receives Cottrell Scholar Award,2022-02-09,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,Life & Death of Stars,Northwestern Press,Education,2021,,,, +6885,Wen-fai Fong named Sloan Research Fellow,2022-02-15,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,Life & Death of Stars,Northwestern Press,Achievement,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Education,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Outreach,2021,,,, +6919,High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research,2022-02-23,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars,CIERA Stories,Event,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2021,,,, +6926,Conference in snowy Aspen brings astrophysicists together,2022-02-24,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,,,, +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,,,, +6944,Kilonova afterglow potentially spotted for first time,2022-02-28,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education,2021,,,, +6999,CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner,2022-03-16,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2021,,,, +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7024,Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize,2022-04-01,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7031,Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society,2022-04-06,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,CIERA Stories,Achievement,2021,,,, +7033,CIERA Astronomers Travel to Mexico to Install TolTEC Camera,2022-04-06,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Exoplanets & The Solar System,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Galaxies & Cosmology,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7040,Five New Postdoctoral Researchers Join CIERA,2022-04-08,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Black Holes & Dead Stars,CIERA Stories,Event,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Exoplanets & The Solar System,CIERA Stories,Achievement,2021,,,, +7060,ALMA Community Day,2022-04-18,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,Exoplanets & The Solar System,CIERA Stories,Event,2021,,,, +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,External Press,Science,2021,,,, +7066,Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients,2022-04-20,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,Life & Death of Stars,Northwestern Press,Science,2021,,,, +7084,Erin Cox Awarded NSF MPS-Ascend Fellowship,2022-04-29,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7104,Tarraneh Eftekhari Named NASA Einstein Fellow,2022-05-03,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,Life & Death of Stars,CIERA Stories,Achievement,2021,,,, +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Event,2021,,,, +7146,CIERA'S Inaugural Astronomy Night Out,2022-05-20,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,Life & Death of Stars,CIERA Stories,Outreach,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Achievement,2021,,,, +7155,Alex Gurvich Wins Northwestern's Data Visualization Contest,2022-06-07,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories,Event,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,CIERA Stories,Outreach,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,External Press,Event,2021,,,, +7157,May 15 Lunar Eclipse Public Viewing,2022-06-08,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,External Press,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,CIERA Stories,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,External Press,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Black Holes & Dead Stars,External Press,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Achievement,2021,,,, +7162,CIERA Researchers Quoted in Sky & Telescope June Cover Story,2022-06-01,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2021,,,, +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,External Press,Science,2021,26,4500000,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +7177,Wandering star disrupts stellar nursery,2022-06-13,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,Life & Death of Stars,Northwestern Press,Science,2021,26,4500000,"• Space.com, June 16, 2022 +• CNET, June 14, 2022 +• IFL Science, June 14, 2022", +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Galaxies & Cosmology,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Life & Death of Stars,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Life & Death of Stars,CIERA Stories,Science,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2021,,,, +7196,CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes,2022-06-21,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Education,2021,,,, +7205,SCOPE Program rising in numbers and influence,2022-06-21,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,CIERA Stories,Interdisciplinary,2021,,,, +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",2022-06-29,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,Black Holes & Dead Stars,Northwestern Press,Science,2021,15,108900,ANI, +7243,CIERA student's paper highlighted by NASA's SOFIA Science Center,2022-07-08,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,Life & Death of Stars,External Press,Science,2021,,,, +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology,Northwestern Press,Achievement,2021,8,1300000,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Galaxies & Cosmology,Northwestern Press,Science,2021,8,1300000,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Life & Death of Stars,Northwestern Press,Achievement,2021,8,1300000,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7265,Northwestern astrophysicists snag early time on James Webb Space Telescope,2022-07-12,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,Life & Death of Stars,Northwestern Press,Science,2021,8,1300000,"WGN TV, Chicago Sun-Times, Fox32 Chicago, WTTW Chicago Tonight", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Black Holes & Dead Stars,Northwestern Press,Science,2021,47,7300000,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2021,47,7300000,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +7285,Explosive neutron star merger captured for first time in millimeter light,2022-08-03,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,Life & Death of Stars,Northwestern Press,Science,2021,47,7300000,"• CNET, Aug. 5, 2022 +• Space.com, Aug. 5, 2022", +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,External Press,Science,2021,8,337590,MSN, +7296,Stars determine their own masses,2022-08-08,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,Life & Death of Stars,Northwestern Press,Science,2021,8,337590,MSN, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Black Holes & Dead Stars,CIERA Stories,Science,2021,,,, +7305,LSST observations of tidal disruption events may uncover existence of dark matter particles,2022-08-12,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,Galaxies & Cosmology,CIERA Stories,Science,2021,,,, +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7306,Women astronomers leading the revolution,2022-08-11,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,,,, +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars,Northwestern Press,Event,2021,8,588300,"ABC7, WBEZ", +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Black Holes & Dead Stars,Northwestern Press,Science,2021,8,588300,"ABC7, WBEZ", +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Life & Death of Stars,Northwestern Press,Event,2021,8,588300,"ABC7, WBEZ", +7325,Northwestern rocket to image supernova remnant,2022-08-11,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,Life & Death of Stars,Northwestern Press,Science,2021,8,588300,"ABC7, WBEZ", +7350,CIERA Postdocs Advance to New Positions,2022-09-14,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,CIERA Stories,Achievement,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Exoplanets & The Solar System,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Life & Death of Stars,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7355,REACH 2022 Sessions Back In-Person,2022-09-16,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Black Holes & Dead Stars,CIERA Stories,Outreach,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Exoplanets & The Solar System,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Exoplanets & The Solar System,CIERA Stories,Outreach,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Galaxies & Cosmology,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Galaxies & Cosmology,CIERA Stories,Outreach,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Life & Death of Stars,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Life & Death of Stars,CIERA Stories,Outreach,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2021,,,, +7357,RET 2022 Completion of a Successful First Year,2022-09-01,https://ciera.northwestern.edu/2022/09/01/ret-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2021,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +7358,REU Welcomed 14 Students to Campus for a Successful 2022 Summer,2022-09-12,https://ciera.northwestern.edu/2022/09/12/reu-2022/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Black Holes & Dead Stars,Northwestern Press,Science,2021,10,436600,Cosmos Magazine, +7359,X-shaped radio galaxies might form more simply than expected,2022-08-29,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,Galaxies & Cosmology,Northwestern Press,Science,2021,10,436600,Cosmos Magazine, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Black Holes & Dead Stars,CIERA Stories,Achievement,2021,,,, +7376,The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier,2022-08-31,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2021,,,, +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,External Press,Science,2021,2,5000,"• WTTW, Sept. 12, 2022",Included local evening news feature +7385,Northwestern astrophysicist contributes to Webb’s first exoplanet image,2022-09-01,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,Exoplanets & The Solar System,Northwestern Press,Science,2021,2,5000,"• WTTW, Sept. 12, 2022",Included local evening news feature +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +7400,CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang,2022-09-06,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars,Northwestern Press,Interdisciplinary,2021,4,105000,"• Space Daily, Aug. 15, 2022",Included local evening news feature +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Black Holes & Dead Stars,Northwestern Press,Science,2021,4,105000,"• Space Daily, Aug. 15, 2022",Included local evening news feature +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Life & Death of Stars,Northwestern Press,Interdisciplinary,2021,4,105000,"• Space Daily, Aug. 15, 2022",Included local evening news feature +7449,A quick jump into space — and back — for pictures of ‘star stuff’,2022-08-29,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,Life & Death of Stars,Northwestern Press,Science,2021,4,105000,"• Space Daily, Aug. 15, 2022",Included local evening news feature +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Data Science & Computing,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Education,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Event,2022,,,, +7610,CIERA welcomes DSFP back to Northwestern,2022-10-12,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,CIERA Stories,Interdisciplinary,2022,,,, +7631,The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci,2022-10-13,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,CIERA Stories,Achievement,2022,,,, +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +7634,Carolyn Porco Presents 13th Annual CIERA Public Lecture,2022-11-07,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars,External Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Black Holes & Dead Stars,Northwestern Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Life & Death of Stars,External Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7643,Brightest-ever gamma-ray burst breaks records,2022-10-18,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,Life & Death of Stars,Northwestern Press,Science,2022,123,20300000,"• Science, Oct. 28, 2022 +• Wired, Oct. 26, 2022 +• Scientific American, Oct. 21, 2022 +• South China Morning Post, Oct. 21, 2022 +• CNET, Oct. 20, 2022 +• The Economist, Oct. 19, 2022 +• Business Insider, Oct. 18, 2022 +• CNN, Oct. 18, 2022 +• Salon, Oct. 18, 2022 +• Space.com, Oct. 18, 2022 +• The Times (London), Oct. 18, 2022 +• Axios, Oct. 17, 2022 +• IFL Science, Oct. 17, 2022 +• Mashable, Oct. 17, 2022 +• Forbes, Oct. 14, 2022 +• Gizmodo, Oct. 14, 2022 +• Vice, Oct. 11, 2022", +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +7657,CIERA Alum Carl Rodriguez wins Packard Fellowship,2022-10-20,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +7698,CIERA Hosts SEDM & ZTF,2022-11-04,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Education,2022,,,, +7705,ALMA Data Reduction Workshop,2022-11-14,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,CIERA Stories,Event,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Achievement,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Event,2022,,,, +7706,Explore the Cosmos with CIERA,2022-11-11,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,CIERA Stories,Outreach,2022,,,, +7711,What makes gamma-ray bursts blink on and off?,2022-11-08,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,External Press,Science,2022,,,, +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars,External Press,Science,2022,12,917000,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Black Holes & Dead Stars,Northwestern Press,Science,2022,12,917000,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,12,917000,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7735,Short gamma-ray bursts traced farther into distant universe,2022-11-21,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,12,917000,"• The Independent, Nov. 21, 2022 +• Space.com, Nov. 25, 2022", +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,0,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,0,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Life & Death of Stars,Northwestern Press,Achievement,2022,0,,, +7744,Team with Northwestern astrophysicists competes for $300 million,2022-11-28,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,Life & Death of Stars,Northwestern Press,Science,2022,0,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Education,2022,,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Event,2022,,,, +7757,REU Site Directors Meeting Led by CIERA's Aaron Geller,2022-12-08,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,CIERA Stories,Interdisciplinary,2022,,,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars,CIERA Stories,Event,2022,,,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",2022-12-16,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,94,13900000,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,94,13900000,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Life & Death of Stars,External Press,Science,2022,94,13900000,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7768,Surprise kilonova upends established understanding of long gamma-ray bursts,2022-12-07,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,Life & Death of Stars,Northwestern Press,Science,2022,94,13900000,"Mashable, CNN, BBC, CNET, Ars Technica, LiveScience (need links)", +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Education,2022,,,, +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Life & Death of Stars,CIERA Stories,Science,2022,,,, +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7797,Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson,2023-01-06,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,Stellar Dynamics & Stellar Populations,CIERA Stories,Science,2022,,,, +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +7845,Graduate Student Jillian Rastinejad Spotlighted on NASA Universe,2023-01-05,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +7881,Researchers develop Firefly: an innovation in interactive particle visualization,2023-01-10,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +7894,Professor Dave Meyer retires after 35 years at Northwestern,2023-01-11,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +7914,Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search,2023-01-13,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,CIERA Stories,Science,2022,,,, +7916,First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion,2023-01-18,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,Exoplanets & The Solar System,External Press,Science,2022,,,, +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,External Press,Science,2022,21,3000000,"CNET, Sky and Telescope", +7918,Ultracool dwarf binary stars break records,2023-01-17,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,Life & Death of Stars,Northwestern Press,Science,2022,21,3000000,"CNET, Sky and Telescope", +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Education,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Event,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Education,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Event,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Education,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2022,,,, +7954,CIERA REU Students Present at 241st Meeting of the AAS,2023-01-23,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press,Outreach,2022,63,17300000,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,External Press,Science,2022,63,17300000,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,Northwestern Press,Outreach,2022,63,17300000,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +7996,Watch distant worlds dance around their sun,2023-01-31,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,Exoplanets & The Solar System,Northwestern Press,Science,2022,63,17300000,"Space.com, Gizmodo, CNET, Mashable, IFLScience, Yahoo!, MSN", +8015,Graduate student's photos of green comet featured in major media outlets,2023-02-03,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,Galaxies & Cosmology,External Press,Outreach,2022,,,, +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8054,Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast,2023-02-16,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +8056,CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award,2023-02-16,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,External Press,Achievement,2022,1,,, +8061,Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine,2023-02-16,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,Black Holes & Dead Stars,Northwestern Press,Achievement,2022,1,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",2023-03-28,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Education,2022,,,, +8125,REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS,2023-03-28,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +8131,Northwestern to host gravitational-wave researchers from around the globe,2023-03-08,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Event,2022,0,,, +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",2023-04-04,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +8166,International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA,2023-04-14,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8173,Star Eyes outreach initiative communicates new science through new music,2023-04-17,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Galaxies & Cosmology,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Life & Death of Stars,CIERA Stories,Achievement,2022,,,, +8204,Introducing CIERA's Eleven New Postdocs!,2023-04-18,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Data Science & Computing,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Education,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Event,2022,,,, +8223,CIERA Connections: Ben Nelson on careers in data science,2023-04-20,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,CIERA Stories,Interdisciplinary,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8226,Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg,2023-04-20,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Achievement,2022,,,, +8247,CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences,2023-04-25,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,Northwestern Press,Interdisciplinary,2022,,,, +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,External Press,Science,2022,88,7200000,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News",As of 2023-05-09 +8250,Medium-sized black holes eat stars like messy toddlers,2023-04-25,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,Black Holes & Dead Stars,Northwestern Press,Science,2022,88,7200000,"CNN, Sky News, New York Post, Independent, Daily Mail, MSN, Fox National, Yahoo! News",As of 2023-05-09 +8271,Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award,2023-04-28,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8295,Gravity Spy 2.0 gears up for the next gravitational wave observing run,2023-05-18,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Black Holes & Dead Stars,Northwestern Press,Achievement,2022,,,, +8298,Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship,2023-05-15,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Achievement,2022,,,, +8305,Four CIERA Members awarded NSF Graduate Research Fellowships,2023-05-16,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",2023-05-31,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Black Holes & Dead Stars,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Exoplanets & The Solar System,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Galaxies & Cosmology,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Life & Death of Stars,External Press,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,CIERA Stories,Outreach,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Data Science & Computing,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Event,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Interdisciplinary,2022,,,, +8335,Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series,2023-06-01,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,Stellar Dynamics & Stellar Populations,External Press,Outreach,2022,,,, +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Event,2022,,,, +8361,CIERA Connections: Harry Kraemer on living a values-based life,2023-06-02,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,CIERA Stories,Interdisciplinary,2022,,,, +8365,PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship,2023-06-07,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,Exoplanets & The Solar System,CIERA Stories,Achievement,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Life & Death of Stars,External Press,Science,2022,,,, +8370,Dying stars’ cocoons could be new source of gravitational waves,2023-06-05,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Galaxies & Cosmology,Northwestern Press,Science,2022,,,, +8374,Mysterious dashes revealed in Milky Way’s center,2023-06-06,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +8389,Gravitational waves from supermassive black hole binaries might be ‘right around the corner’,2023-06-08,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8410,Stellar demolition derby births powerful gamma-ray burst,2023-06-22,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,Life & Death of Stars,Northwestern Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars,External Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8423,Exotic stars enable scientists to tune into the hum of a cosmic symphony,2023-06-29,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars,External Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Black Holes & Dead Stars,Northwestern Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Science,2022,,,, +8425,Unveiling the origins of merging black holes in galaxies like our own,2023-06-29,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,Gravitational Waves & Multi-Messenger Astronomy,Northwestern Press,Science,2022,,,, +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Education,2022,,,, +8464,Vicky Kalogera is thrilled by the extraordinary,2023-07-13,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,Gravitational Waves & Multi-Messenger Astronomy,External Press,Outreach,2022,,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Education,2022,,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Event,2022,,,, +8470,Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out,2023-07-17,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,Galaxies & Cosmology,CIERA Stories,Outreach,2022,,,, diff --git a/test_data/test_data_complete/raw_data/News_Report_2023-07-25.csv b/test_data/test_data_complete/raw_data/News_Report_2023-07-25.csv new file mode 100644 index 0000000..efffd89 --- /dev/null +++ b/test_data/test_data_complete/raw_data/News_Report_2023-07-25.csv @@ -0,0 +1,556 @@ +id,Title,Date,Permalink,"Research Topics","Press Types",Categories +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",07/26/2018,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,"Life & Death of Stars","Northwestern Press",Science +437,"12th International LISA Symposium Held in Chicago by CIERA & AAS",07/13/2018,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +769,"Shaping Globular Clusters with Black Holes",03/21/2018,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","External Press",Science +774,"See The Planets Of Our Solar System While Listening To 'The Planets'",05/18/2016,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,"Exoplanets & The Solar System","External Press",Event|Interdisciplinary|Outreach +776,"Solar System Symphony Melds Music with Astronomy",05/23/2016,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,"Exoplanets & The Solar System","External Press",Event|Interdisciplinary|Outreach +1286,"CIERA Sponsors Meeting of Gravitational Wave International Committee",07/08/2018,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",06/29/2018,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Event +1289,"Experts Gather to Discuss the Circumgalactic Medium",08/04/2018,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,"Galaxies & Cosmology","CIERA Stories",Event +1294,"CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee",08/13/2018,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,"CIERA Stories",Achievement|Education +1295,"Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson",09/01/2017,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,"CIERA Stories",Achievement +1306,"CIERA Helps Chicago-Area High School Students Host 2018 GirlCon",06/16/2018,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,"CIERA Stories",Event|Interdisciplinary|Outreach +1309,"CIERA Postdocs Advance to New Positions",06/10/2018,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,"CIERA Stories","Achievement|Data Science & Computing" +1310,"Brice Ménard Presents CIERA Interdisciplinary Colloquium",06/04/2018,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +1312,"CIERA Contributes to World Science Festival",05/30/2018,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1315,"CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy",09/01/2017,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +1317,"Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera",09/15/2017,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Outreach +1318,"CIERA Partners with The Chicago Network on STEM Event",05/17/2018,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1324,"Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting",09/01/2017,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +1343,"CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies",09/15/2017,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +1346,"New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way",05/11/2018,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","Northwestern Press",Science +1347,"Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran",09/18/2017,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,"Life & Death of Stars","External Press",Science +1351,"PhD Student Alex Gurvich Awarded Two Prestigious Fellowships",05/10/2018,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,"Galaxies & Cosmology","CIERA Stories|External Press",Achievement +1352,"CIERA Researchers Contribute to Record-setting Gravitational Wave Detection",09/27/2017,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +1353,"Seven New Postdoctoral Researchers Join CIERA",05/09/2018,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",10/03/2017,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Interdisciplinary +1357,"Professor Vicky Kalogera Elected to National Academy of Sciences",05/02/2018,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,"External Press|Northwestern Press",Achievement +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",05/02/2018,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,"Northwestern Press",Achievement|Education +1361,"CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time",10/16/2017,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +1368,"Graduate Student Katie Breivik Wins Blue Apple Prize at MRM",10/14/2017,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +1370,"CIERA’s Shane Larson Joins U.S. NASA LISA Study Team",10/15/2017,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +1372,"Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture",10/05/2017,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,"CIERA Stories|Northwestern Press",Event|Outreach +1377,"CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference",10/21/2017,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,"Galaxies & Cosmology","CIERA Stories",Achievement|Education +1379,"CIERA Affiliate Member Magdalena Osburn Named Packard Fellow",10/26/2017,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,"Northwestern Press",Achievement|Interdisciplinary +1381,"“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest",11/02/2017,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","Northwestern Press",Achievement|Interdisciplinary|Outreach +1382,"Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia",12/01/2017,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +1390,"REU Student José Flores Velazquez Presents Research on Capitol Hill",04/20/2018,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,"Galaxies & Cosmology","CIERA Stories",Achievement +1391,"Computational Research Day: April 10, 2018",04/10/2018,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Education|Event|Interdisciplinary" +1392,"Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field",04/05/2018,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,"Galaxies & Cosmology","External Press",Achievement|Science +1396,"CIERA Hosts Workshop on Radio Astronomy",03/29/2018,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,"CIERA Stories",Achievement|Event +1399,"Embassy of Greece Interviews CIERA Director Vicky Kalogera",03/27/2018,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,"External Press",Achievement +1400,"Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium",03/22/2018,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +1411,"Top Telescope Access for CIERA Researchers",11/01/2017,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,"CIERA Stories",Science +1413,"Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection",11/10/2017,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +1415,"Cosmos in Concert: Celestial Suite",11/18/2017,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,"CIERA Stories",Event|Interdisciplinary|Outreach +1431,"CIERA Graduate Students Host Field Trip for Girls 4 Science",02/03/2018,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,"CIERA Stories",Event|Outreach +1436,"Professor Claude-André Faucher-Giguère Named Cottrell Scholar",02/12/2018,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,"External Press|Northwestern Press",Achievement +1438,"CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor",01/31/2018,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,"CIERA Stories",Achievement +1445,"CIERA REU Students Present at 231st Meeting of the AAS",01/31/2018,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,"CIERA Stories",Achievement|Education|Event|Interdisciplinary +1448,"New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds",01/30/2018,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Science +1452,"CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics",01/10/2018,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,"Northwestern Press",Achievement +1453,"Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy",01/09/2018,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +1456,"Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos",01/09/2018,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,"Life & Death of Stars","External Press",Science +1460,"CIERA Researchers Highlight Their Expertise in Seven Minutes or Less",12/06/2017,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,"Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event|Interdisciplinary|Outreach +1465,"Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole",12/01/2017,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,"Black Holes & Dead Stars|Life & Death of Stars","External Press|Northwestern Press",Science +1468,"CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event",11/28/2017,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1490,"CIERA Director Vicky Kalogera Meets with U.S. Congressman",02/05/2018,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,"CIERA Stories",Achievement|Outreach +1493,"Another Way for Stellar-mass Black Holes to Grow Larger",08/17/2018,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,"Black Holes & Dead Stars","External Press",Science +1544,"CIERA Celebrates a Decade Of Discovery",09/13/2018,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,"Northwestern Press",Event|Outreach +1613,"CIERA REU Panel Discussion Explores Careers in Astrophysics",08/06/2018,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,"CIERA Stories",Education +1615,"2018 REU Students Present Their Research at Annual Poster Session",08/24/2018,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,"CIERA Stories",Achievement|Event|Interdisciplinary|Outreach +1626,"Announcing CIERA's 2018 Summer Undergraduate Researchers",06/01/2018,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary" +1668,"Astronomers Witness Birth of New Star from Stellar Explosion",09/20/2018,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,"Life & Death of Stars","External Press",Science +1681,"Prof. Mel Ulmer Featured in Sky at Night Magazine",08/24/2018,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,"External Press",Achievement|Science +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",09/01/2018,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,"CIERA Stories",Achievement +1698,"CIERA Researchers Featured in “Humans of LIGO”",09/20/2018,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",09/27/2018,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +1914,"CIERA Director Vicky Kalogera Presents Annual Public Lecture",10/25/2018,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,"CIERA Stories",Event|Outreach +1928,"CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow",08/31/2017,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,"CIERA Stories",Achievement +1930,"The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space",10/25/2018,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,"CIERA Stories|External Press",Event|Interdisciplinary|Outreach +1935,"CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide",10/26/2018,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,"CIERA Stories",Achievement|Event|Outreach +1940,"CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine",08/31/2017,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,"Black Holes & Dead Stars","CIERA Stories",Achievement +1947,"Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago",10/26/2018,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,"CIERA Stories",Event|Outreach +1950,"New Issue of “LIGO Magazine” Available",08/31/2017,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +2007,"CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event",08/22/2017,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,"CIERA Stories|External Press|Northwestern Press",Event|Outreach +2012,"Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing",08/15/2017,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,"CIERA Stories",Event|Outreach +2015,"2017 REU Students Present Their Research at Annual Poster Session",08/18/2017,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,"CIERA Stories",Achievement|Education|Event|Interdisciplinary|Outreach +2032,"CIERA REU Students Discover Careers in Astronomy",07/31/2017,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,"CIERA Stories",Education|Event +2034,"CIERA's 2017 Summer Student Researchers",07/30/2017,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,"CIERA Stories",Education|Interdisciplinary +2084,"CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out",07/31/2017,https://ciera.northwestern.edu/2017/07/31/2084/,"Life & Death of Stars","External Press|Northwestern Press",Science +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",07/31/2017,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,"Galaxies & Cosmology","External Press|Northwestern Press",Science +2088,"The Computing Power Behind CIERA’s Galaxy Formation Research",07/20/2017,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,"Galaxies & Cosmology","Northwestern Press",Achievement +2089,"Graduate Students Engage with 7th/8th Grade Students & Families",07/01/2017,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,"CIERA Stories",Event|Outreach +2111,"CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine",11/02/2018,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,"Life & Death of Stars","External Press",Science +2199,"CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video",06/12/2017,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,"Northwestern Press",Achievement +2201,"Graduate Student Fani Dosopoulou Receives Holt Award",06/10/2017,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +2203,"CIERA Hosts Supernovae: The LSST Revolution Workshop",06/03/2017,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,"Life & Death of Stars","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2209,"LIGO Detects Gravitational Waves for Third Time",06/02/2017,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +2210,"Astronomy Students Awarded Best Senior Thesis",05/30/2017,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,"Black Holes & Dead Stars","CIERA Stories",Achievement +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",05/23/2017,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,"CIERA Stories",Event|Interdisciplinary|Outreach +2305,"CIERA Postdocs Advance to New Positions",05/19/2017,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,"CIERA Stories",Achievement|Interdisciplinary +2306,"Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium",05/18/2017,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2311,"Physics Makes Music in A Shout Across Time",05/16/2017,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,"CIERA Stories|External Press|Northwestern Press",Event|Interdisciplinary|Outreach +2321,"Chicago Woman Magazine Features CIERA Director Prof. Kalogera",05/06/2017,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,"External Press",Achievement +2323,"LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture",05/03/2017,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +2337,"CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence",05/01/2017,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +2338,"CIERA Contributes to Northwestern’s Computational Research Day",04/30/2017,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press","Achievement|Data Science & Computing|Event|Interdisciplinary" +2340,"Prof. Faucher-Giguère Receives NSF Honor for Young Faculty",04/29/2017,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,"Galaxies & Cosmology","Northwestern Press",Achievement +2341,"CIERA to Welcome New Postdocs in Fall 2017",04/28/2017,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing" +2343,"Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space",04/27/2017,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,"CIERA Stories",Achievement +2344,"CIERA Researchers Highlight Their Expertise in Seven Minutes or Less",03/17/2017,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Education|Event|Interdisciplinary|Outreach +2408,"CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker",11/12/2018,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2437,"New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin",03/15/2017,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,"Gravitational Waves & Multi-Messenger Astronomy","External Press","Achievement|Data Science & Computing|Interdisciplinary|Outreach" +2439,"CIERA Pilot Program Exposes Students to Astronomy Research",03/13/2017,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,"CIERA Stories",Education +2442,"CIERA Professor Giles Novak Joins ALMA Science Advisory Committee",03/12/2017,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,"CIERA Stories",Achievement +2444,"Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium",03/02/2017,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +2451,"Media Seek Expertise on New Planets in TRAPPIST-1 System",02/28/2017,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,"Exoplanets & The Solar System","External Press",Outreach +2515,"CIERA Hosts Astronomy Day for Middle School Teachers",02/25/2017,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,"CIERA Stories",Education|Event +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",01/31/2017,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,"Life & Death of Stars","External Press",Science +2521,"Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS",01/30/2017,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +2523,"Supernova News from CIERA Professor Raffaella Margutti",01/29/2017,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,"Life & Death of Stars","External Press",Science +2525,"CIERA REU Students Present at 229th Meeting of the AAS",01/28/2017,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement|Education|Interdisciplinary +2536,"CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229",01/27/2017,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,"CIERA Stories",Achievement +2549,"Professor Mel Ulmer Discusses Geoengineering at AAS229",01/20/2017,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,"CIERA Stories|External Press",Achievement|Interdisciplinary +2551,"Four New Postdoctoral Researchers Join CIERA",01/01/2017,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,"Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +2642,"Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine",11/20/2018,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,"External Press",Achievement|Outreach +2747,"Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence",11/26/2018,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Outreach +2768,"Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest",12/31/2016,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,"Galaxies & Cosmology","Northwestern Press",Achievement +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",11/27/2018,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,"External Press|Northwestern Press",Achievement +2819,"Year-in-Review Honors for the LIGO Scientific Collaboration",12/30/2016,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +2825,"Prospect High School Hosts Panel of Women Astrophysicists from Northwestern",12/29/2016,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,"CIERA Stories",Event|Outreach +2828,"Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni",12/28/2016,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +2829,"Postdocs & Graduate Students Present at Annual CIERA Research Jamboree",12/15/2016,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,"CIERA Stories",Event +2977,"Four New Gravitational-Wave Detections",12/03/2018,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +2989,"Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium",12/01/2016,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press",Event|Interdisciplinary +2995,"Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio",11/30/2016,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,"Northwestern Press",Achievement +2996,"Graduate Student Matthew Rickert Wins Reber Fellowship",11/29/2016,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,"Life & Death of Stars","CIERA Stories",Achievement +2999,"CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope",11/28/2016,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,"Northwestern Press",Interdisciplinary|Science +3000,"CIERA REU Students Present at PhysCon",11/27/2016,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,"Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Achievement|Education +3002,"Graduate Student Katie Breivik’s Paper Featured on AAS Nova",11/26/2016,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","External Press",Achievement|Science +3003,"Rapid Fire Research Kicks Off",11/01/2016,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,"CIERA Stories",Achievement|Education|Event +3005,"CIERA REU Student Beverly Lowell Presents Research at Symposium",10/31/2016,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,"Exoplanets & The Solar System","CIERA Stories",Achievement|Education|Interdisciplinary +3007,"CIERA’s Board of Visitors Meets with Top University Officials",10/30/2016,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,"CIERA Stories",Event +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",10/17/2016,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,"CIERA Stories|Northwestern Press",Event|Outreach +3059,"Gravity Spy: The New Gravitational-Wave Project Using Citizen Science",10/14/2016,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press","Data Science & Computing|Interdisciplinary|Outreach" +3062,"Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event",10/03/2016,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,"CIERA Stories",Achievement|Interdisciplinary +3063,"Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship",10/01/2016,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,"CIERA Stories",Achievement|Education +3065,"Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics",09/30/2016,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,"CIERA Stories",Achievement +3208,"CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship",09/27/2016,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3212,"CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less",09/14/2016,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Education|Event|Interdisciplinary|Outreach +3218,"Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event",09/13/2016,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +3224,"CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge",09/02/2016,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,"CIERA Stories",Event +3225,"“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest",12/13/2018,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,"Galaxies & Cosmology","Northwestern Press",Achievement|Interdisciplinary +3250,"Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe",09/01/2016,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,"Life & Death of Stars","CIERA Stories|Northwestern Press",Achievement +3254,"Sasha Tchekhovskoy Receives High-Performance Computing Award",12/18/2018,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,"Black Holes & Dead Stars","CIERA Stories","Achievement|Data Science & Computing|Science" +3257,"Shane Larson Wins Grand Prize in Instructables Optics Contest",12/18/2018,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,"CIERA Stories|External Press",Achievement|Education|Interdisciplinary|Outreach +3274,"Birth of a Black Hole or Neutron Star Captured for First Time",01/10/2019,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,"Black Holes & Dead Stars|Life & Death of Stars","External Press|Northwestern Press",Science +3278,"CIERA Hosts GNOME Data Analysis Bootcamp",08/31/2016,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Science" +3280,"REU Poster Session Celebrates Hard Work with Sweet Rewards",08/30/2016,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,"CIERA Stories",Education|Event|Interdisciplinary +3301,"NASA Illinois Space Grant Recipients Present Their Summer Research Projects",08/29/2016,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +3308,"CIERA's 2016 Summer Student Researchers",08/28/2016,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,"CIERA Stories",Education +3311,"CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program",08/27/2016,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary|Outreach" +3314,"Physics and Astronomy Department Rising in Impact and Visibility",07/30/2016,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,"Northwestern Press",Achievement +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",07/29/2016,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Outreach|Science +3317,"CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects",07/14/2016,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,"CIERA Stories",Achievement|Education|Interdisciplinary +3329,"Experts Share with CIERA REU Students at Career Panel Discussion",07/13/2016,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,"Stellar Dynamics & Stellar Populations","CIERA Stories","Data Science & Computing|Education|Event|Outreach" +3330,"CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night",07/13/2016,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,"CIERA Stories",Education|Event|Outreach +3332,"Data Science is Transforming Research at Northwestern-CIERA",07/12/2016,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,"CIERA Stories|Northwestern Press","Data Science & Computing" +3334,"LIGO Team Announces Second Gravitational-Wave Event",06/30/2016,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Event|Science +3336,"‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes",06/29/2016,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +3338,"Jian Cao Receives Manufacturing Medal",06/27/2016,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,"CIERA Stories|Northwestern Press",Achievement +3339,"Graduate Students Participate in High School Research Project Showcase",06/24/2016,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,"CIERA Stories",Education|Event|Outreach +3343,"CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café",06/01/2016,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,"Galaxies & Cosmology","CIERA Stories",Education|Event +3345,"CIERA Researchers Help Build a Far-Infrared Camera for SOFIA",05/29/2016,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,"Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Achievement|Science +3376,"Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site",01/28/2019,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,"Stellar Dynamics & Stellar Populations","External Press",Achievement|Science +3398,"CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago",05/20/2016,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,"CIERA Stories|External Press",Event|Outreach +3400,"Graduate Student Makes Cosmic Music",05/25/2016,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,"CIERA Stories",Event|Interdisciplinary|Outreach +3410,"Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium",01/15/2019,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,"Galaxies & Cosmology","CIERA Stories",Event|Interdisciplinary +3415,"Total Lunar Eclipse Captivates on Frigid Night",01/20/2019,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,"CIERA Stories",Event|Outreach +3421,"Y.O.U. Students Enjoy Astronomy Visit",01/22/2019,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,"CIERA Stories",Education|Outreach +3426,"IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference",05/20/2016,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,"CIERA Stories","Data Science & Computing|Education|Event|Outreach" +3428,"Enthusiasm for Mercury Transit Despite Cloudy Skies",05/19/2016,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,"CIERA Stories",Education|Event|Outreach +3442,"Northwestern Hosts Regional Conference for Women in Physics",01/21/2019,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,"CIERA Stories",Event|Interdisciplinary +3452,"CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON",05/10/2016,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,"CIERA Stories",Education|Event|Interdisciplinary +3458,"CIERA Researcher Brings The Galaxy to the Classroom",05/06/2016,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,"CIERA Stories",Education|Event|Outreach +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",05/01/2016,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +3507,"CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources",02/07/2019,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,"Life & Death of Stars","External Press","Data Science & Computing|Interdisciplinary|Science" +3529,"Ripples in Spacetime at Take Our Daughters & Sons to Work Day",04/30/2016,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,"CIERA Stories",Education|Event|Outreach +3532,"CIERA Presentations at National Science Foundation Site Visit",04/29/2016,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,"CIERA Stories|Northwestern Press",Event +3534,"CIERA Contributes to Northwestern’s Computational Research Day",04/28/2016,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,"CIERA Stories|Northwestern Press","Data Science & Computing|Event|Interdisciplinary" +3537,"CIERA’s Carl Rodriguez Gives TEDx Talk",04/25/2016,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press",Achievement|Education|Event +3539,"CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship",04/22/2016,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,"Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +3542,"Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium",04/03/2016,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",03/31/2016,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,"External Press",Achievement +3551,"CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café",03/29/2016,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event +3554,"Kick-off of New Outreach Event Series: Astronomy on Tap Chicago",03/01/2016,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,"CIERA Stories",Event|Outreach +3556,"The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology",02/28/2016,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,"CIERA Stories",Event +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",02/20/2016,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +3562,"CIERA Contributes to the Historic First Detection of Gravitational Waves",02/15/2016,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +3563,"Largest Ever Event for Graduate Student Speaker Series",02/11/2016,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,"CIERA Stories",Education|Event|Outreach +3604,"Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium",02/04/2016,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3609,"CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS",01/30/2016,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,"CIERA Stories",Achievement|Event +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",01/29/2016,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +3614,"New Monthly Night at Dearborn Observatory with CIERA Astronomers",01/27/2016,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,"CIERA Stories",Event +3617,"American Astronomical Society to Lead WorldWide Telescope",01/10/2016,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,"CIERA Stories|External Press",Education|Outreach|Science +3620,"CIERA Grad Student Brings the Stars to Her Hometown",01/05/2016,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,"CIERA Stories",Achievement|Education|Outreach +3622,"Integrated Data Science Certificate in Development at CIERA",01/01/2016,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,"CIERA Stories","Achievement|Data Science & Computing|Education" +3624,"AAAS Fellow Jeremy Ward Visits CIERA",12/06/2015,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,"CIERA Stories",Event +3629,"CIERA’s Raffaella Margutti Named Sloan Research Fellow",02/19/2019,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,"External Press|Northwestern Press",Achievement +3634,"New York Times Discusses Importance of ‘Behind the Scenes’ Science",02/20/2019,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Interdisciplinary|Science +3637,"Professors Novak & Sageman Named to 2015 Faculty Honor Roll",11/30/2015,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,"CIERA Stories",Achievement +3639,"CIERA's Shane Larson Participates in Gravitational Wave Google Hangout",11/25/2015,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event|Outreach +3642,"CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff",11/22/2015,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Education|Event +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",11/19/2015,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,"Northwestern Press",Achievement|Interdisciplinary +3654,"Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium",11/13/2015,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary +3659,"Stargazing with Local Dads and Daughters Outdoors Group",11/11/2015,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,"CIERA Stories",Education|Event|Outreach +3661,"CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold",11/10/2015,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,"CIERA Stories",Event +3663,"CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern",11/03/2015,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,"Exoplanets & The Solar System","CIERA Stories",Education|Event|Outreach +3717,"CIERA’s Erin Cox Wins NRAO Dissertation Award",02/22/2019,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,"Exoplanets & The Solar System|Life & Death of Stars","External Press",Achievement +3724,"CIERA Professor Wen-Fai Fong Interviewed by Science News",02/25/2019,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3732,"CIERA Director Elected to LSSTC ExecBoard",11/01/2015,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,"CIERA Stories",Achievement +3735,"CIERA Summer Research Student Continues to Communicate Work",10/31/2015,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,"Galaxies & Cosmology","CIERA Stories",Education|Event +3737,"Dearborn Observatory Featured in Open House Chicago 2015",10/25/2015,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,"External Press",Event +3739,"CIERA Director Awarded Prestigious APS 2016 Bethe Prize",10/20/2015,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Achievement +3741,"CIERA’s Shane Larson Elected APS Fellow",10/15/2015,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,"CIERA Stories",Achievement +3743,"2015 Midwest Relativity Meeting Hosted by CIERA",10/05/2015,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",09/30/2015,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,"CIERA Stories",Education|Event|Outreach +3755,"CIERA Graduate Students Speak at Local High School’s Women in STEM Event",11/25/2015,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,"CIERA Stories",Education|Event|Outreach +3757,"CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics",11/22/2015,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +3758,"Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day",09/13/2015,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,"CIERA Stories",Education|Event|Outreach +3760,"CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium",09/12/2015,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,"CIERA Stories",Education|Event +3784,"CIERA's 2015 Summer Student Researchers",08/31/2015,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,"CIERA Stories",Education +3787,"CIERA Director Vicky Kalogera Speaks to Office for Research Staff",08/30/2015,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,"CIERA Stories",Event +3791,"CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought",07/30/2015,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,"Black Holes & Dead Stars","CIERA Stories|External Press|Northwestern Press",Science +3793,"Immediate Opening for Graduate Student: CIERA Keck Foundation Grant",07/27/2015,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,"Exoplanets & The Solar System","CIERA Stories",Science +3795,"CIERA Undergraduate Researcher Accepted to Ph.D. Programs",07/22/2015,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,"CIERA Stories",Achievement +3797,"CIERA Research Group Receives Time with Hubble Space Telescope",07/20/2015,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,"Galaxies & Cosmology","CIERA Stories|External Press",Achievement|Science +3799,"Astronomy Club of the College of DuPage Visits CIERA",07/12/2015,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,"CIERA Stories",Education|Event +3801,"W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer",07/04/2015,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,"Exoplanets & The Solar System","CIERA Stories|External Press",Achievement|Science +3803,"CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics",06/30/2015,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,"CIERA Stories",Education|Event|Outreach +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",02/27/2019,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,"External Press",Achievement +3817,"Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs",03/10/2019,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,"CIERA Stories",Education|Interdisciplinary|Outreach +3823,"IDEAS Fellows Contribute to New Seismology Citizen Science Project",03/13/2019,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,"External Press|Northwestern Press","Data Science & Computing|Education|Interdisciplinary|Science" +3838,"Student-led Data Expeditions with ""Vault""",03/25/2019,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary|Outreach" +3843,"Eight New Postdoctoral Researchers Join CIERA",04/01/2019,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,"CIERA Stories",Achievement +3856,"CIERA Graduate Student Michael Zevin Research Featured in AAS Nova",03/28/2019,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3859,"You’re Invited! Humans Needed to Help Find Star Clusters",03/29/2019,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,"Stellar Dynamics & Stellar Populations","CIERA Stories|External Press","Data Science & Computing|Interdisciplinary|Outreach|Science" +3868,"CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves",04/01/2019,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +3871,"Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series",04/02/2019,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,"Northwestern Press",Event|Outreach +3872,"Professor Margutti’s Paper Among Top Ten in 2018",04/03/2019,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +3881,"Illinois Congressman Visits CIERA",06/27/2015,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,"CIERA Stories",Outreach +3883,"CIERA Helps the Adler Planetarium Celebrate the Summer of Science!",06/15/2015,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,"CIERA Stories",Education|Event|Outreach +3885,"NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden",06/10/2015,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,"Exoplanets & The Solar System","CIERA Stories",Achievement +3887,"CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article",06/05/2015,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,"Galaxies & Cosmology","CIERA Stories",Achievement|Science +3895,"CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC)",06/01/2015,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,"CIERA Stories",Achievement|Interdisciplinary|Science +3897,,05/31/2015,https://ciera.northwestern.edu/2015/05/31/3897/,,"CIERA Stories",Achievement|Education +3899,"Neil deGrasse Tyson Ignites CIERA Annual Public Lecture",05/15/2015,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,"CIERA Stories",Education|Event|Outreach +3921,"Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium",04/30/2015,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,"CIERA Stories",Education|Event +3931,"CIERA Fellow Geller Wins First Prize in Data Visualization Challenge",04/29/2015,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,"Life & Death of Stars","CIERA Stories",Achievement +3934,"Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week",04/15/2019,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +3939,"CIERA Faculty Comment on World’s First Image of a Black Hole",04/16/2019,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +3941,"CIERA Co-Sponsors Computational Research Day Poster Session",04/25/2015,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,"CIERA Stories|Northwestern Press",Event|Interdisciplinary|Science +3943,"Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole",04/24/2015,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,"Life & Death of Stars","CIERA Stories",Achievement|Science +3945,"Two NSF Graduate Fellowships Awarded to NU Astronomy Students",04/18/2015,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,"Exoplanets & The Solar System","CIERA Stories",Achievement +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",04/10/2015,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,"CIERA Stories|External Press","Achievement|Data Science & Computing|Interdisciplinary" +3949,"CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research",04/18/2019,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,"CIERA Stories",Achievement|Education +3951,"CIERA REU Students Present at 233rd Meeting of the AAS",01/31/2019,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,"CIERA Stories",Education|Event +3964,"CIERA’s Paul Williams on Studying Star Formation in Antarctica",04/19/2019,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,"Galaxies & Cosmology","CIERA Stories",Science +3970,"Middle School Girls on a Mission to Space!",03/31/2015,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,"CIERA Stories",Education|Event|Outreach +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",03/29/2015,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,"CIERA Stories|Northwestern Press",Achievement|Event|Outreach +3974,"CIERA to Welcome Four New Postdocs in Fall 2015",03/19/2015,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,"CIERA Stories",Achievement +3976,"Summer Undergraduate Student Success Stories: CIERA Alumni",03/01/2015,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,"CIERA Stories",Education +3978,"CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report",02/28/2015,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,"Exoplanets & The Solar System","Northwestern Press","Achievement|Data Science & Computing|Interdisciplinary|Science" +3980,"From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium",02/26/2015,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3991,"LSST Project Accepts New Mirror Surfaces",02/27/2015,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,"CIERA Stories|External Press",Science +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",02/20/2015,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,"Exoplanets & The Solar System","CIERA Stories",Achievement +4008,"CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory",02/17/2015,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,"Exoplanets & The Solar System","CIERA Stories|External Press|Northwestern Press",Science +4010,"LIGO Generations: New Documentary on Gravitational Wave Astronomy",02/10/2015,https://ciera.northwestern.edu/2015/02/10/ligo-generations-new-documentary-on-gravitational-wave-astronomy/,"Gravitational Waves & Multi-Messenger Astronomy",,Education|Event +4013,"CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award",02/05/2015,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,"Black Holes & Dead Stars","CIERA Stories",Achievement|Event +4016,"Join Einstein Evenings throughout 2015",01/25/2015,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,"CIERA Stories",Education|Event|Outreach +4018,"Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror",01/11/2015,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,"CIERA Stories|External Press",Achievement|Event|Science +4028,"Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks",12/15/2014,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,"Galaxies & Cosmology","CIERA Stories",Event +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",11/16/2014,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,"CIERA Stories",Education|Event|Interdisciplinary|Outreach +4040,"A New Infrared Camera for Exoplanet Imaging",04/29/2019,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,"Exoplanets & The Solar System","CIERA Stories",Science +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",11/06/2014,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,"CIERA Stories|Northwestern Press",Achievement|Outreach|Science +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",11/02/2014,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,"CIERA Stories|Northwestern Press",Achievement|Education|Event|Outreach +4052,"CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics",10/31/2014,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,"Black Holes & Dead Stars","CIERA Stories",Event|Interdisciplinary|Science +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",10/27/2014,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,"CIERA Stories|External Press|Northwestern Press",Education|Event|Outreach|Science +4069,"Prof. Dave Meyer Delivers New Video Course on Space Astronomy",10/20/2014,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,"CIERA Stories|External Press",Achievement|Education|Event +4071,"CIERA Professor Fred Rasio Appointed to KITP Advisory Board",10/03/2014,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,"CIERA Stories",Achievement|Interdisciplinary +4073,"CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”",09/30/2014,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,"Galaxies & Cosmology|Life & Death of Stars","CIERA Stories|Northwestern Press",Achievement|Interdisciplinary|Science +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",09/30/2014,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,"CIERA Stories|Northwestern Press",Education|Event|Outreach +4081,"CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters",09/25/2014,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,"Exoplanets & The Solar System","CIERA Stories",Achievement|Science +4082,"Professor Meyer Named to 2014 Faculty Honor Roll",09/09/2014,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,"CIERA Stories",Achievement +4085,"New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone",08/31/2014,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",08/27/2014,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,"CIERA Stories",Event|Science +4089,"National Science Foundation Agrees to Fund LSST Project",08/22/2014,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,"CIERA Stories|External Press",Achievement|Science +4091,"CIERA's 2014 Summer Student Researchers",08/17/2014,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,"CIERA Stories",Education|Outreach +4093,"CIERA Hosts Galaxy Formation Workshop",08/01/2014,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,"Galaxies & Cosmology","CIERA Stories",Education|Event|Science +4096,"LIGO on Lookout for 8 Sources of Gravitational Waves",05/06/2019,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4100,"First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole",05/02/2019,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4125,"Graduate Student Inspires Students Through Art",07/29/2014,https://ciera.northwestern.edu/2014/07/29/graduate-student-inspires-students-through-art/,,,Education|Event|Outreach +4127,"The Science that Shared Buzz Aldrin’s Space Selfie",07/27/2014,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,"External Press",Science +4129,"CIERA Director Elected Trustee of Aspen Center for Physics",07/15/2014,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,"CIERA Stories",Achievement +4130,"CIERA’s Shane Larson Called In As Expert On “Cityhenge”",07/10/2014,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,"CIERA Stories|External Press",Achievement|Event|Outreach|Science +4132,"Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research",07/06/2014,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,"CIERA Stories",Achievement|Education|Interdisciplinary +4133,"CIERA Postdoc Explores Black Holes in BBC Magazine Feature",07/01/2014,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,"Black Holes & Dead Stars","CIERA Stories|External Press",Achievement|Science +4141,"Lakota Stellar STEM Weekend",05/28/2019,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,"CIERA Stories",Education|Event|Interdisciplinary|Outreach +4150,"CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival",06/30/2014,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,"Black Holes & Dead Stars","CIERA Stories|External Press",Achievement|Interdisciplinary +4151,"Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites",06/15/2014,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +4154,"Nine Students Awarded Funding from Weinberg College and Illinois Space Grant",06/01/2014,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,"CIERA Stories",Achievement|Education|Outreach +4155,"CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students",05/31/2014,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,"CIERA Stories",Education|Event|Outreach +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",05/29/2014,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,"CIERA Stories",Achievement|Event|Outreach +4164,"Lindsey Byrne Awarded DOE Graduate Fellowship",06/04/2019,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4167,"Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow",06/04/2019,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","External Press",Achievement +4170,"Database Celebrates the Presence of African American Women in Physics",06/04/2019,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,"External Press",Achievement|Interdisciplinary +4172,"What Next for Gravitational Wave Detection?",06/04/2019,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4174,"Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium",03/15/2019,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary +4177,"Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium",04/01/2019,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +4195,"Most-detailed Simulations of Black Hole Solve Longstanding Mystery",06/06/2019,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +4200,"Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop",05/27/2014,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,"CIERA Stories",Achievement|Interdisciplinary +4202,"CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast",05/25/2014,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,"Black Holes & Dead Stars","CIERA Stories|External Press",Education|Event|Science +4204,"CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase",06/03/2014,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,"CIERA Stories|External Press",Achievement|Education|Event|Interdisciplinary|Outreach +4209,"Erik Curiel on Inconsistent Definitions of a Black Hole",05/09/2019,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,"CIERA Stories",Event|Interdisciplinary +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",06/19/2019,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4234,"Fred Rasio Receives 2019 Brouwer Award",06/20/2019,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,"Northwestern Press",Achievement +4239,"Scientists Gather to Plan Flight of Balloon-borne Telescope",06/14/2019,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,"CIERA Stories",Event|Science +4242,"Monica Gallegos Garcia Wins Ford Foundation Fellowship",06/21/2019,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +4244,"The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom",05/13/2019,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,"CIERA Stories",Event|Interdisciplinary +4247,"The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz",05/29/2019,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,"CIERA Stories",Event|Interdisciplinary +4254,"High School Researcher Takes Gold at State Science Fair",06/21/2019,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,"CIERA Stories",Achievement|Education +4280,"Aprajita Hajela Wins NASA Future Investigator Award",07/10/2019,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +4283,"Northwestern Leads Effort to Detect New Types of Cosmic Events",07/17/2019,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4291,"20 Years of Chandra X-ray Observatory",07/25/2019,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press",Science +4328,"SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space",08/15/2019,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +4336,"""Astronomers probably just saw a black hole swallow a dead star""",08/19/2019,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4354,"CIERA Celebrates Apollo 11",07/26/2019,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,"CIERA Stories",Event|Outreach +4357,"Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules",07/18/2019,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,"CIERA Stories",Education|Event|Outreach +4359,"Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’",08/23/2019,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +4368,"Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar",09/05/2019,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",08/28/2019,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,"External Press",Outreach|Science +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",09/09/2019,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4406,"Announcing CIERA’s 2019 Summer Undergraduate Researchers",06/01/2019,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,"CIERA Stories",Education +4411,"""Giant balloon-like structures discovered at center of Milky Way""",09/12/2019,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,"Black Holes & Dead Stars|Galaxies & Cosmology","External Press|Northwestern Press",Science +4435,"Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session",08/02/2019,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,"CIERA Stories",Education|Event|Outreach +4458,"CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase",06/03/2014,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,"CIERA Stories",Education|Event|Outreach +4460,"Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy",05/08/2014,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +4466,"Ben Farr Successfully Defends Thesis",05/05/2014,https://ciera.northwestern.edu/2014/05/05/ben-farr-successfully-defends-thesis/,"Gravitational Waves & Multi-Messenger Astronomy",,Achievement|Science +4468,"CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields",05/04/2014,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,"CIERA Stories|Northwestern Press",Achievement|Outreach +4469,"Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee",05/02/2014,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,"CIERA Stories",Achievement|Outreach +4471,"Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship",05/01/2014,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,"CIERA Stories",Achievement +4472,"CIERA Sponsors Poster Session at Northwestern's Computational Research Day",04/30/2014,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,"CIERA Stories",Event|Interdisciplinary +4474,"CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair",04/27/2014,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,"Black Holes & Dead Stars","CIERA Stories",Achievement|Event +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",04/25/2014,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Uncategorized +4480,"Total Lunar Eclipse April 15th",04/20/2014,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,"CIERA Stories",Event|Outreach +4493,"IDEAS Trainees Attend the Grace Hopper Celebration 2019",10/10/2019,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +4531,"""A star has been flickering for years – and researchers think they've figured out why""",10/31/2019,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,"Life & Death of Stars","External Press",Science +4534,"CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS",11/01/2019,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,"Northwestern Press",Achievement +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",11/12/2019,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,"Exoplanets & The Solar System","External Press|Northwestern Press",Science +4577,"Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award",04/15/2019,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,"CIERA Stories",Achievement|Education +4579,"IDEAS & CIERA Host NSF Research Traineeship National Meeting",09/30/2019,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +4591,"CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University",09/01/2019,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,"CIERA Stories",Achievement +4592,"STEM Panel Discussion Held at Lincoln Park High School",10/08/2019,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,"CIERA Stories",Education|Event|Outreach +4594,"Dearborn Observatory on View at Open House Chicago 2019",10/21/2019,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,"CIERA Stories",Event|Outreach +4608,"Priya Natarajan Presents 11th Annual CIERA Public Lecture",10/25/2019,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,"Galaxies & Cosmology","CIERA Stories",Event|Outreach +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",04/04/2014,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +4636,"CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows",11/26/2019,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,"Northwestern Press",Achievement +4641,"Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought",12/02/2019,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +4650,"An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light",12/09/2019,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4656,"First Discoveries by the Young Supernova Experiment",12/08/2019,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,"Life & Death of Stars","External Press",Science +4658,"Faucher-Giguère Named Highly Cited Researcher",12/02/2019,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,"Northwestern Press",Achievement +4659,"CIERA Observer's Image Gets ""Starlinked""",11/18/2019,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,"Galaxies & Cosmology","CIERA Stories|External Press",Science +4662,"Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy",11/01/2019,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,"Black Holes & Dead Stars","Northwestern Press",Achievement|Science +4713,"This Exoplanet is in a Death Dance with its Star",01/13/2020,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,"Exoplanets & The Solar System","External Press",Science +4762,"CIERA Postdocs Advance to New Positions",09/01/2019,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,"CIERA Stories",Achievement +4763,"Using Gravitational Waves to See Inside Stars",12/09/2019,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +4765,"Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’",12/10/2019,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +4769,"New Year, New CIERA Open House Event",01/22/2020,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Outreach" +4794,"The Sky is No Limit",02/19/2020,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,"Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +4800,"Cosmic ‘candy cane’ spotted in inner Milky Way",12/18/2019,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Science +4816,"CIERA REU Students Present at 235th Meeting of the AAS",01/10/2020,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +4829,"Students from Chicago’s Off the Street Club Visit Dearborn Observatory",02/18/2020,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,"CIERA Stories","Data Science & Computing|Event|Outreach" +4833,"Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows",02/25/2020,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,"External Press",Achievement +4855,"Coronavirus/COVID-19 Update",03/13/2020,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,"CIERA Stories",Uncategorized +4863,"Proposal Workshop for New Observatory Held at CIERA",02/06/2020,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,"CIERA Stories","Data Science & Computing|Education|Event" +4870,"Coronavirus/COVID-19 Update",03/25/2020,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,"CIERA Stories",Uncategorized +4875,"Seven New Postdoctoral Researchers Join CIERA",04/01/2020,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,"CIERA Stories",Achievement +4881,"CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World",04/09/2020,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,"External Press","Achievement|Data Science & Computing|Science" +4883,"Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight",04/09/2020,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,"Northwestern Press",Interdisciplinary|Outreach +4888,"Prof. Margutti Receives NSF Honor for Junior Faculty",03/26/2020,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,"Northwestern Press",Achievement +4889,"A Supernova that Outshines All Others",04/13/2020,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,"Life & Death of Stars","External Press",Science +4899,"Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy",04/20/2020,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4901,"NASA Hubble Fellowship Awarded to Michael Zevin",04/21/2020,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,"CIERA Stories",Achievement +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",04/21/2020,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,"CIERA Stories",Uncategorized +4910,"Beverly Lowell Awarded NSF Graduate Research Fellowship",04/01/2020,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +4912,"Danat Issa Awarded Frontera Computational Science Fellowship",03/24/2020,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +4915,"NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”",05/09/2020,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press",Achievement +4921,"Using Gravitational Waves to Approximate Pi",05/19/2020,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4924,"Astrophysicists Capture New Class of Transient Objects",05/26/2020,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,"Life & Death of Stars","Northwestern Press",Science +4934,"CIERA to Host National REU Leaders",05/27/2020,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,"CIERA Stories",Achievement|Education +4937,"Undergraduate Andrew Bowen Receives AAS Chambliss Award",05/07/2020,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4942,"Remote Learning Resources Available on New Reach for the Stars Website",05/28/2020,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,"CIERA Stories",Education|Outreach +4944,"Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM",06/01/2020,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,"CIERA Stories",Achievement +4948,"Black Lives Matter",06/06/2020,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,"CIERA Stories",Uncategorized +4956,"Launching SCOPE, a Free Online Science Communication Program",06/12/2020,https://ciera.northwestern.edu/2020/06/12/launching-scope-a-free-online-science-communication-program/,,,Education|Interdisciplinary +4964,"New Mystery Merger Detected by LIGO-Virgo",06/23/2020,https://ciera.northwestern.edu/2020/06/23/gw190814/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4977,"CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize",06/18/2020,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,"CIERA Stories",Achievement +4978,"CIERA Ranks #1 for National Postdoctoral Fellowships",05/29/2020,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,"Black Holes & Dead Stars|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4982,"Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award",06/19/2020,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,"Galaxies & Cosmology","CIERA Stories",Achievement +4998,"Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected",07/14/2020,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,"Life & Death of Stars","Northwestern Press",Science +5003,"Spectacular ultraviolet flash may finally explain how white dwarfs explode",07/23/2020,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,"Life & Death of Stars","Northwestern Press",Science +5016,"Calcium-rich supernova examined with X-rays for first time",08/05/2020,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,"Life & Death of Stars","Northwestern Press",Science +5025,"4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller",08/06/2020,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,"Life & Death of Stars","CIERA Stories",Achievement|Education +5038,"Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not",09/01/2020,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +5070,"Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole",09/02/2020,https://ciera.northwestern.edu/2020/09/02/gw190521/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +5078,"CIERA Postdocs Move on to New Positions",09/17/2020,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,"CIERA Stories",Achievement +5094,"Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists",09/08/2020,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,"Galaxies & Cosmology","CIERA Stories",Science +5112,"CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet",09/17/2020,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +5114,"CIERA High School Summer Research Experience in Astronomy Goes Remote!",08/14/2020,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,"CIERA Stories",Education|Outreach +5129,"CIERA's REU Program Goes Virtual!",08/31/2020,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,"CIERA Stories",Education|Interdisciplinary +5382,"Update on Initiative for Social Justice",10/01/2020,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,"CIERA Stories",Uncategorized +5446,"The Low Spin of the Milky Way's Supermassive Black Hole",10/20/2020,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +5454,"Star 'Spaghettified' by a Supermassive Black Hole",10/12/2020,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +5523,"Black hole ‘family portrait’ is most detailed to date",10/29/2020,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +5526,"Statement of Principles and Values",10/28/2020,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,"CIERA Stories",Uncategorized +5535,"Growing Library of Educational Brochures by CIERA Astronomers",10/30/2020,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education +5537,"Shane Larson Presents Virtual Public Lecture on the Milky Way",11/03/2020,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,"CIERA Stories",Event|Outreach +5578,"NASA's Hubble Sees Unexplained Brightness from Colossal Explosion",11/12/2020,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5606,"Rare Short Gamma-ray Burst Discovered in Galaxy Cluster",11/23/2020,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,"Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +5624,"André de Gouvêa Selected as 2020 AAAS Fellow",11/30/2020,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,"CIERA Stories",Achievement +5641,"Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy",11/16/2020,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,"Black Holes & Dead Stars","CIERA Stories","Achievement|Data Science & Computing" +5678,"Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago",12/14/2020,https://ciera.northwestern.edu/2020/12/14/christmas-star/,"Exoplanets & The Solar System","External Press",Outreach +5726,"Faucher-Giguère Named Highly Cited Researcher for Second Year",12/21/2020,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,"Galaxies & Cosmology","External Press",Achievement +5732,"The Upside of Volatile Space Weather",12/21/2020,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,"Exoplanets & The Solar System","Northwestern Press",Interdisciplinary|Science +5759,"2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi",10/25/2020,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +5761,"String of Stars in Milky Way are Related",01/15/2021,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,"Stellar Dynamics & Stellar Populations","Northwestern Press",Science +5795,"‘Unicorn’ Discovery Points to a New Population of Black Holes",01/28/2021,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5806,"CIERA Astronomy LIVE Debuts on YouTube",02/01/2021,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Event|Outreach +5842,"Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos",02/18/2021,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5863,"Major Award for Gravitational Wave Researcher Christopher Berry",03/15/2021,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +5864,"New Kind of Space Explosion Reveals the Birth of a Black Hole",03/12/2021,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,"Black Holes & Dead Stars|Life & Death of Stars","External Press",Science +5883,"Welcome New CIERA Postdoctoral Researchers",03/18/2021,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +5904,"Prof. Fong Receives NSF Honor for Young Faculty",03/24/2021,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,"Life & Death of Stars","Northwestern Press",Achievement +5906,"New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase",03/25/2021,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Outreach +5920,"200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics",04/02/2021,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Event +5939,"Vicky Kalogera Named 2021 Guggenheim Fellow",04/12/2021,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Achievement +5958,"NSF Graduate Fellowships Awarded to Astronomy Students",04/19/2021,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,"CIERA Stories",Achievement|Education +5979,"Vicky Kalogera Elected to American Academy of Arts and Sciences",04/23/2021,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +6008,"Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs",04/28/2021,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,"Life & Death of Stars","CIERA Stories",Science +6010,"American Physical Society Elects Professors Margutti and Larson to Committees",04/17/2021,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,"CIERA Stories",Achievement +6028,"James Kasting Presents Joint Interdisciplinary Colloquium",05/03/2021,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +6033,"‘Oddball supernova’ appears strangely cool before exploding",05/05/2021,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,"Life & Death of Stars","External Press|Northwestern Press",Science +6073,"Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career",05/17/2021,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,"Northwestern Press",Education|Interdisciplinary|Outreach +6078,"Stunning simulation of stars being born is most realistic ever",05/17/2021,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,"Galaxies & Cosmology|Life & Death of Stars","External Press|Northwestern Press","Data Science & Computing|Science" +6083,"Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship",05/18/2021,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +6094,"Intense radio blasts traced to galaxies’ spiral arms",05/20/2021,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,"Life & Death of Stars","External Press|Northwestern Press",Science +6180,"Astrophysicists detect first black hole-neutron star mergers",06/29/2021,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",08/16/2021,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,"Northwestern Press","Data Science & Computing|Interdisciplinary" +6267,"New simulation shows how galaxies feed their supermassive black holes",08/17/2021,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press","Data Science & Computing|Science" +6326,"CIERA Members Win 2nd Place for JSPG Policy Position Paper",08/30/2021,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,"Northwestern Press",Achievement|Interdisciplinary +6358,"Luke Kelley Awarded Cottrell Fellowship",09/08/2021,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +6435,"Another Successful CIERA REU Program in the Books!",10/20/2021,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,"CIERA Stories",Education|Interdisciplinary +6436,"REACH Continues to Grow!",10/20/2021,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,"CIERA Stories",Education|Outreach +6553,"Professor Wen-fai Fong Receives Prestigious Packard Fellowship",10/14/2021,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Achievement +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",10/20/2021,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +6606,"CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program",11/01/2021,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +6642,"Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog",11/08/2021,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +6662,"CIERA Welcomes New Faculty Member Adam Miller",09/01/2021,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,"Life & Death of Stars","CIERA Stories",Achievement +6664,"Phil Plait Presents 12th Annual CIERA Public Lecture",10/21/2021,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +6747,"Looking forward to a huge leap in space exploration",12/17/2021,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Achievement|Science +6776,"Astronomers capture red supergiant’s death throes",01/06/2022,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,"Life & Death of Stars","Northwestern Press",Science +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",01/26/2022,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,"Galaxies & Cosmology","Northwestern Press",Science +6871,"Wen-fai Fong receives Cottrell Scholar Award",02/09/2022,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,"Life & Death of Stars","Northwestern Press",Achievement|Education +6885,"Wen-fai Fong named Sloan Research Fellow",02/15/2022,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,"Life & Death of Stars","Northwestern Press",Achievement +6919,"High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research",02/23/2022,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,"Life & Death of Stars","CIERA Stories","Data Science & Computing|Education|Outreach|Science" +6926,"Conference in snowy Aspen brings astrophysicists together",02/24/2022,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Event|Science +6944,"Kilonova afterglow potentially spotted for first time",02/28/2022,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +6999,"CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner",03/16/2022,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Education|Outreach +7024,"Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize",04/01/2022,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7031,"Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society",04/06/2022,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,"CIERA Stories",Achievement +7033,"CIERA Astronomers Travel to Mexico to Install TolTEC Camera",04/06/2022,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,"Life & Death of Stars","CIERA Stories",Science +7040,"Five New Postdoctoral Researchers Join CIERA",04/08/2022,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7060,"ALMA Community Day",04/18/2022,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Achievement|Event +7066,"Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients",04/20/2022,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,"Life & Death of Stars","External Press|Northwestern Press",Science +7084,"Erin Cox Awarded NSF MPS-Ascend Fellowship",04/29/2022,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,"Life & Death of Stars","CIERA Stories",Achievement +7104,"Tarraneh Eftekhari Named NASA Einstein Fellow",05/03/2022,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,"Life & Death of Stars","CIERA Stories",Achievement +7146,"CIERA'S Inaugural Astronomy Night Out",05/20/2022,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,"Life & Death of Stars","CIERA Stories",Event|Outreach +7155,"Alex Gurvich Wins Northwestern's Data Visualization Contest",06/07/2022,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,"Galaxies & Cosmology","CIERA Stories","Achievement|Data Science & Computing" +7157,"May 15 Lunar Eclipse Public Viewing",06/08/2022,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,"CIERA Stories|External Press",Event|Outreach +7162,"CIERA Researchers Quoted in Sky & Telescope June Cover Story",06/01/2022,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Outreach +7177,"Wandering star disrupts stellar nursery",06/13/2022,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,"Life & Death of Stars","External Press|Northwestern Press",Science +7196,"CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes",06/21/2022,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Event|Science +7205,"SCOPE Program rising in numbers and influence",06/21/2022,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,"CIERA Stories",Education|Interdisciplinary +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",06/29/2022,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,"Black Holes & Dead Stars","Northwestern Press",Science +7243,"CIERA student's paper highlighted by NASA's SOFIA Science Center",07/08/2022,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,"Life & Death of Stars","External Press",Science +7265,"Northwestern astrophysicists snag early time on James Webb Space Telescope",07/12/2022,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Achievement|Science +7285,"Explosive neutron star merger captured for first time in millimeter light",08/03/2022,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +7296,"Stars determine their own masses",08/08/2022,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,"Life & Death of Stars","External Press|Northwestern Press",Science +7305,"LSST observations of tidal disruption events may uncover existence of dark matter particles",08/12/2022,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,"Black Holes & Dead Stars|Galaxies & Cosmology","CIERA Stories",Science +7306,"Women astronomers leading the revolution",08/11/2022,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Outreach +7325,"Northwestern rocket to image supernova remnant",08/11/2022,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,"Black Holes & Dead Stars|Life & Death of Stars","Northwestern Press",Event|Science +7350,"CIERA Postdocs Advance to New Positions",09/14/2022,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,"CIERA Stories",Achievement +7355,"REACH 2022 Sessions Back In-Person",09/16/2022,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach +7357,"RET 2022 Completion of a Successful First Year",09/01/2022,https://ciera.northwestern.edu/2022/09/01/ret-2022/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach +7358,"REU Welcomed 14 Students to Campus for a Successful 2022 Summer",09/12/2022,https://ciera.northwestern.edu/2022/09/12/reu-2022/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Interdisciplinary|Outreach +7359,"X-shaped radio galaxies might form more simply than expected",08/29/2022,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Science +7376,"The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier",08/31/2022,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +7385,"Northwestern astrophysicist contributes to Webb’s first exoplanet image",09/01/2022,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,"Exoplanets & The Solar System","External Press|Northwestern Press",Science +7400,"CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang",09/06/2022,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,"Exoplanets & The Solar System|Galaxies & Cosmology","CIERA Stories",Achievement +7449,"A quick jump into space — and back — for pictures of ‘star stuff’",08/29/2022,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,"Black Holes & Dead Stars|Life & Death of Stars","Northwestern Press",Interdisciplinary|Science +7610,"CIERA welcomes DSFP back to Northwestern",10/12/2022,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +7631,"The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci",10/13/2022,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,"CIERA Stories",Achievement +7634,"Carolyn Porco Presents 13th Annual CIERA Public Lecture",11/07/2022,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +7643,"Brightest-ever gamma-ray burst breaks records",10/18/2022,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +7657,"CIERA Alum Carl Rodriguez wins Packard Fellowship",10/20/2022,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7698,"CIERA Hosts SEDM & ZTF",11/04/2022,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,"Life & Death of Stars","CIERA Stories",Event +7705,"ALMA Data Reduction Workshop",11/14/2022,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,"CIERA Stories",Education|Event +7706,"Explore the Cosmos with CIERA",11/11/2022,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,"CIERA Stories",Achievement|Event|Outreach +7711,"What makes gamma-ray bursts blink on and off?",11/08/2022,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,"External Press",Science +7735,"Short gamma-ray bursts traced farther into distant universe",11/21/2022,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +7744,"Team with Northwestern astrophysicists competes for $300 million",11/28/2022,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Achievement|Science +7757,"REU Site Directors Meeting Led by CIERA's Aaron Geller",12/08/2022,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,"CIERA Stories",Education|Event|Interdisciplinary +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",12/16/2022,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,"Black Holes & Dead Stars|Life & Death of Stars","CIERA Stories",Event|Interdisciplinary +7768,"Surprise kilonova upends established understanding of long gamma-ray bursts",12/07/2022,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +7797,"Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson",01/06/2023,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,"Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach|Science +7845,"Graduate Student Jillian Rastinejad Spotlighted on NASA Universe",01/05/2023,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +7881,"Researchers develop Firefly: an innovation in interactive particle visualization",01/10/2023,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Data Science & Computing|Interdisciplinary|Outreach" +7894,"Professor Dave Meyer retires after 35 years at Northwestern",01/11/2023,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,"CIERA Stories",Achievement +7914,"Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search",01/13/2023,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Education +7916,"First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion",01/18/2023,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,"Exoplanets & The Solar System","CIERA Stories|External Press",Science +7918,"Ultracool dwarf binary stars break records",01/17/2023,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,"Life & Death of Stars","External Press|Northwestern Press",Science +7954,"CIERA REU Students Present at 241st Meeting of the AAS",01/23/2023,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +7996,"Watch distant worlds dance around their sun",01/31/2023,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,"Exoplanets & The Solar System","External Press|Northwestern Press",Outreach|Science +8015,"Graduate student's photos of green comet featured in major media outlets",02/03/2023,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,"Galaxies & Cosmology","External Press",Outreach +8054,"Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast",02/16/2023,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +8056,"CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award",02/16/2023,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,"Galaxies & Cosmology","CIERA Stories",Achievement +8061,"Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine",02/16/2023,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,"Black Holes & Dead Stars","External Press|Northwestern Press",Achievement +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",03/28/2023,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +8125,"REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS",03/28/2023,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,"Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Education|Interdisciplinary" +8131,"Northwestern to host gravitational-wave researchers from around the globe",03/08/2023,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Event +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",04/04/2023,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +8166,"International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA",04/14/2023,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +8173,"Star Eyes outreach initiative communicates new science through new music",04/17/2023,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary|Outreach +8204,"Introducing CIERA's Eleven New Postdocs!",04/18/2023,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +8223,"CIERA Connections: Ben Nelson on careers in data science",04/20/2023,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +8226,"Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg",04/20/2023,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +8247,"CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences",04/25/2023,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,"Northwestern Press",Achievement|Interdisciplinary +8250,"Medium-sized black holes eat stars like messy toddlers",04/25/2023,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +8271,"Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award",04/28/2023,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +8295,"Gravity Spy 2.0 gears up for the next gravitational wave observing run",05/18/2023,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Outreach" +8298,"Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship",05/15/2023,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +8305,"Four CIERA Members awarded NSF Graduate Research Fellowships",05/16/2023,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Interdisciplinary +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",05/31/2023,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,"Life & Death of Stars","CIERA Stories",Event|Interdisciplinary +8335,"Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series",06/01/2023,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories|External Press","Data Science & Computing|Event|Interdisciplinary|Outreach" +8361,"CIERA Connections: Harry Kraemer on living a values-based life",06/02/2023,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,"CIERA Stories",Event|Interdisciplinary +8365,"PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship",06/07/2023,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,"Exoplanets & The Solar System","CIERA Stories",Achievement +8370,"Dying stars’ cocoons could be new source of gravitational waves",06/05/2023,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +8374,"Mysterious dashes revealed in Milky Way’s center",06/06/2023,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Science +8389,"Gravitational waves from supermassive black hole binaries might be ‘right around the corner’",06/08/2023,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +8410,"Stellar demolition derby births powerful gamma-ray burst",06/22/2023,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +8423,"Exotic stars enable scientists to tune into the hum of a cosmic symphony",06/29/2023,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +8425,"Unveiling the origins of merging black holes in galaxies like our own",06/29/2023,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +8459,"REACH 2023 Sessions See Highest Attendance Yet",01/01/1970,https://ciera.northwestern.edu/?p=8459,,"CIERA Stories",Education|Outreach +8464,"Vicky Kalogera is thrilled by the extraordinary",07/13/2023,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Education|Outreach +8468,"GravitySpy research paper wins major Spanish data science award",01/01/1970,https://ciera.northwestern.edu/?p=8468,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +8470,"Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out",07/17/2023,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,"Galaxies & Cosmology","CIERA Stories",Education|Event|Outreach diff --git a/test_data/test_data_complete/raw_data/press_office.xlsx b/test_data/test_data_complete/raw_data/press_office.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..43e4c12365b17aa6574a4883f7a03817f170e8c7 GIT binary patch literal 14879 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

5bumxn^qrbBySR&EQ zX-$5WaW^^p;*-XEi#6i=%eqP>EjEOzqBN`21!HNXO<1FfUHsVLgsCK|b=TdhR)Sd0 zjM7LG_D8Y_vJ~K-yw_@n(cWIwRq4yC`qlHr@_?qLrlM?KXHlT!F@z}c-j-xNmQXuc-{Q0}m-dP;-GVX(yid`kc9b|i#${FWHBX_yy_VM*>3sy+8N+6W6 zPk5Vg%giLzvy#Ox8M|2}P)VL`=O^oK-&XLhw91q2I&$D|HIMCdyAts)2PVR0sp zN;}<@E4YukNRN|8;~7$9NRhs@7#7WE$Cmfa$yN{$iPK z#l%26#WZBc7aI%3ow*lbW3I9X-V)Pk9&i4=(L_kwXK}vX-afi){fM1Nr1oi!GTnB`vwo5}OvgQ}ojrB_a0BKHSK$Eg zQ6{P>u|u@ndv#X$3g6W?JOo~(!!(ou}uVc7ugi^0&-xSiL#{#I$l zN5!xBUG>+#b${wp@9f_3zt@!+M|r=Dled>TyPwq<<$3WcqK_NnztFd2S#=0hN$GRTtdLP$yZ`XkM$T%tIVxoe={Y&;W{Il%b@T11(6N?L( zvBTmBHkqddnOE%M*?r`zv_mH^WA-%?Qx(nC-65D*;*uafT7WxY=q2J<4w#dXPc4SB zweIe6Qa1J=`RiVM8h-I~b|;*tWUliJ@@zuI=qv8}WgT%Yo+1nh7H3Cp&qx;#Q{(q1 z)4q_Jyso`j&zhWkdhz^N6R~qNrlEMH)E7+;>?xiQX7#lCY3$Shg_wxE5kq3{$bOod z!Fo6I31M~6w`HmA?HWgM&kxp|v!n^Q_KRr@^6b0u2*XtC-DjP~ac3GC%rv9aM;G3PSPk#v3g1e6COQqRxQA z(r)3lwyeuO69dm)~xgg(hR$V zmak^#3gY~%jy8N5mYZkFJu%(*v3-jV+UIuuoQ0jwI-cXS*&^`WKio`syVk=og~~(W z^~y6hyt?7fA5N$uuPio>9Gvm{!p|G$E(m+iPwhQ@HQhlBdwd7WD0R;ccYHT4=H<4` zTPm-Z$ZTlyrnt;`CC2uc%=TBPX_Sm#kmGohgDl5i{l}UQc*5a!!iD*#)9QaJC|GT+R)VME&(cy>yH%ac7jjtq zJgv8ro-;Bed2Sp3#Wgw7{Acmekbk^lS`I53JKQRKF?pDH2-^6+UvDsZG+)=#kf?9= z7#Y_)Q-677eyVRvh=0$fb-Yzck_*Iph-BgeBX2*Ro)njSmUP?S<07pieTHtz#y~O} zvv*;&%T$}3b&b~$mI_@@Mm(JDWWTdUu~ZyMwqRqz+lIa3-2NM4rI87#m1OrY&r}h^ zPr=>KuChFf+A8m{Lfv_+a_fDpa{RsXX1d879;^KAuJWGFFjo24%P)q9VkV7M{x(-R zUemI+0DZh$I&JK3nsusw(O#dHmSBf-Gs_Eo(`#D>ib5eDY-p+n+ zY@&8n;xO66`9xoj=8oqAKVX4t6`M+bp8R4#B#x3M#1=BUXgRJ|hm8MhU42KDt{P_- z@4P=YOB#}Ece9dvn6Kjp$IneC591j}ZWUb!FMQs0SxU+N*VxjKkbWJCJbn1jtV-G6 zc4Kaxj>h_Rc@XEZx#`FB+t}Rf*?e-0-VA?dPv?8`!O^C3Rd^u{tLe=Vnmtxr%Ws|e zX>KPv!Mgc(ea2^Wv^NW*kH>E8-D|Aj-sts@k2SoScVw*L+Y|llEs93 zkSHZ+c9tH)2s z@!4~g{$Fl3qji1RO()SZTaSe*Pn7TPg6At9>s32DUT$-R4?MXQ5|_>DcEt0;uI#up zah5r6cz^B2mo9eO*{KC3vLD9t*ZO}oqHlRFHfwv`U511h5@MD&{n@xY!*)dvhlEJI zxVJ4K*6jg9LJSEpB*gvFH?Lp&ulm~}n)q z;LMf+FVDQa)46F)%sTB$b|^DodB@DC=&Sqp z&so}4Gt#o}%O?2AG_qJu@h7fkF8#QAF*B17>t1+!=ey(Ir#unf%e@*!b$Jh_arKNw z@ppCPR{c4gKArq6_2b)U#%8%y?Z``;Y^we@a=qtGT~uBvUc7h1N{}UirXM>YTxfPe z>>w6_>S%6RQzfxaU`mC?uTDnBpf??_7uvI%%Wxciv|@(dlor> zE~E#^*=X;A*vXund$DPs)s?uvYN5!Im>S&du~fAEyncT?VGaB$V^)q#M2r&5Jc%>aG)M%6n-TJB3L0?7Mn{|y70Lm$1O4g zQlcVS%TEF!ZaguO9+2O=)3vE})8a;2#zXNc$$cia19ISMcsI^gSYpX;$S33%46^Ij z{!y5*Rigc)y1#bCt+#9Z9~_-DfosorweLR{uKlpC&S=tI|5&36!%Ji_AXf%POtf0+S(pl+5U<|hu{}Md~w7YG90W| z%|o?!Fv)@%V}L=${dJE2)&EoXxo;PPj^sWwPO#a2*8AApP z88Bo(SS0VZ3}A7bmg8hD*(7#kl^ZUG6C>PSJo|I`1ntD%9BT>D0PN;-Bq|1U@|9*^ zcK)YRYmFmLr)W7+uL-&OE@LN8TdL+jd2(;V0sjKOLW4ySJ-_+@Ch0XHV*A`0hqxwJKt(7MPysMT=48 z$4d-hB8X;|I@$fY#-0?X*DUR`?fsn2oZEYk{o^yvL67PWVyvWBhZIS zbusNM1Fe!b!5z#ptNi2XjK~bXM_blDdqlKL^3I-b_E)(sOV&?+Jd)S=kCWd0u0*i3 zbsy#lJItq89kRiZ63LOk>aZg@Vpb)RCzgn#sZYKn-OUk}2vmZsA**DU6K`c6zN+u` zHZnvF^8Q?lB#C6}-DyaYAxV0E;U+P9b7x4B=EvFIp4m@H(%Zkts2gRikVe_bWy(oC zaNlYC_H2=>s&+rEotI8raSL+7R8K;07U%8s$a zJD$CNwJrB1ZNp6I~nJGj>btpWNHOkLrr1Z^izJHuI>SC3P(|E!B9zjl0OzwLb7Aedy_SVNXYg-Za0?zU9c2uNKh4qW!kFT=q@xSYoC&-FN66L+==R2b);U$iuQzkIGuz)MDEHihYwE zOPo@&gFbTOI384e$aqDY|2AF_ScfcHPijQ@VAQ;Z49t0YZ`B$6DtsoqsE`e3zdptT z;P1&0jK3AnO%M<~>k9>-a1=x^C_xrKVf>&B$)(LzM3j!NLet>_}_iv~5 ziQl1(uqj{FnPE*Vt;pn`i+9#DY9$QLa6a7?4nIyYi_xGzls*oig zU09(#zh-8l9y%|)$K^3}=F-^a_~~)FymZrY65;#ei|~c=T?R8WMz}c{r`~vCY+Cye zN8@>CS|wJ@%lc-vVy(!%c(1!#{P{R0Kl#CXcN!~stYkB?$%?U(t!~-%ui{GXu_^5= zVen3PyrUme|&?*n($4jZZS}!w+(8%an*aACx7md#IdfA*}X> zfw%e=ur&A#Oa`MKa@OLb#V<8{I#uz)=~K<#`51tZzMt!QxSF0o;kAd`_q1|rx~nP@ zLCoj6^SN7Mr1TuZopWASTXQUQ(CEZS=$mM5_407|!ftFa&hB(nXFM+azA*^n33yy* zL-Fs|88CGC8YW;v%vDAc^D7z^`r+*0c8Mk7FX*9m-rXnFn#cHVuw2$+DPp+(>)k1JeV z6hf?f2sf6K>pqy~*3v$1{M<)8b7H4|bM3R^`6rVB&rq+LW8McuJsiyC*{2^jYF>*1 zv@%~+tBGgeCle85#aS2D(5H1bRVou1$Ws+5Vnxf4z+d%0^(*|m@e{N5SGl!TntqcB zT0N|5Rjp~2K&?TZti&EZo_fKD_1nr}klsPqPh;8Q=&Z8V-^6ihD{}KJU)j1Ot@3Q5 zAL9dzS3!i-YRs1N)Y?o8kdevR@z;r*Y){Z+hm{cat5LpFcjAjA7b7vWMb`EtgR54x znIG%>(kyXa|M=-~I)60Ny8G-Vsk98K7W?&n{mqll)l$u;UWKdEeBn*y&GsvP`z!J^ z4HdwG3O-<6L+RsdY|)Qa`ds1F7&wRT$S?hO+~fn?o~GCQZRU#=YlihaDDO>3y?NU6 z-Rj4X5aiU55VI`l&&Hl48WQ4Q+A$KB+9H8WMulx6Yn<;1%6aBtYuY!(m@{83`)$h9r|v4!^#b(7c$^o$hQGIfMLqg(vXK|HD|M$X+w$kpx-!tlIQ^p3O1$Y)r{892=56=XPr71-uG^5$@=nYBgvR z%mmBs`)UnNlMxHr(|@;{pjGBTZ*J^nJ*;c_a*$AWVfet;;1 zQ4GJ3i^Vyq?*q+X_q3?!@Fw7;GPJCFSIK3XEKuPcnS;UO%@9aF>Ci*eQd3yp*4<^u zp&^Hc98zZuTVG^aLoQP1%=*2WaSr<@hkC3^@@dGSA%}(>8gi(w6H>IW+9D zb-MDf%dT?V=f3GfBGi_pT_Vwf`?PGbxDzeAom$J7A`J=Y$A%^YcX%9OejF4wa*|nw z>jrySMN1$?_!=-w$O~%|#)H}7zWD?%qA@=#JJfOUpZxb2JnUb7{Ik_J?$rHb#V+ml zp8bF8_lCdpeEB_H((&Ea>AIE=jz`^ydWMsE3lfiuUj)I!&RN%chzSlvEd29x$F33w zgr&qU5=6vE`UEqPg*Lc|>~O!S&z>9JCIa0`5V;9ES~vb$5}l2sXm;J4a5)uQKCSVF z6aG-2m*-X3VSRRq`{FHmi(}RGMzMcc*-YtL}D5m-dIGu_`V?!|ZVf;ZAo;!^BbM-{-+gBm%uvtt1v5 z?{#?hA_v%759+AgS;^SrH#y6B(P73s^*rNz@u#B;Vz^qsX zSbWLulU{_$GTWLh(>Sj?{hoh>*3N(aoARE}ozp-1bk>3PCGJm&o;M(gZM3KDZ;YDrvcs)`k@dff2=%$h)@sPDh(qV~N7EPBD1G#8DH?T!o&@S@HaaBZIes`+`3s zuNQXA-8v7OOgru`^3Z1(jXTWDos;|=62T~`0T`)4N_;%EkXXZiO=~^RjQs=CNR&^m zTk5G12@^*YRI=^0crPe@@+dv1wi1hRvz|xpKyoNCOG|G$Z$XtA@(jI~WlJ>1M3~`=)tvI6VQ3w0C_&e_Yv{ zJwpNv3DBP%U(_6He8Sx{jUfTvrUY0gV}=A65@1Mx?Gfnx(g9dsLkAdEKz|nWX2;M0 zdYK9KO9Ct-J+Ve^lrOo(dIVu(55F$k0v2~N?xfY?V?jX!*vw)?Sj}puLcdt>SjB!9 zpW~Ni>BoW(w<1`dD^6AuOpXs2Ln37k%9>Zd@X2JSCvOQ(Mk0XRz2(`59|R#}Q^OPB zfR4!i*RmHqtWOPZban1?);9F)(19Qc$vl+nR*{W7Yw!fINFs7rn4bQ}x?UzCBl%#8 z(`o1d^e2_$*pD)wJf5(ER&j7WLYVhH z;{z}8_KffEYUFO!pTp_X>a}O3(Lr6|8Y7(eC-2ks-o4MBFz>iO4ls$9mlv9|DZ}I{ zd+XR-;fw@-4MGWXFysDIzdhQQ2kJg?jeVG5Jc-Z z)eE22C&=aUJPcA1RA~7OZ22LhNSf35)sRt}M;~Xt_GZ|soH;wnLq@^&FFLk)|76s< zU2e#z*PS$0|>4=T@O?`5HxcB+= zu)c@san_Ec3w^xuJ71o>39--QujS!up50b;-qFOove1lxryBksJ|YQ53NGSHIRF^x-;`T9f6M>DQ{vp#!o zpjleWEXg4uxycf^1=u}}82{A&ycBrY zEvJ0T4i_$8?h>XY-e~U09~G;_MCRC-?XTOHI9{lx+HT=8Mc-x?=o)hO0H@a~e-yIK%c}|-TGLuj7rPvK+Kl4kpcl96GIGJC@g+GN~ zM0|Mv&15c$4rb|CKdf&SEq^AT3JX+KR!4g6H0{2}_#7)!>Ht(S}4GkXllu`;bX9d%7ue1Jg=*`SPKCIrsy3#_J%kl(#SH1TH z&itubSsI^{m|5bm^X&0alM|^=$pgtN?V0q}IKQkTx9U!?rsayKsT8mY?$z@hIKErF z^5wRiDx7$*sh77YhIN&_)5*mj&$BEH^xVWPI|j3ZV5#W}vx-)Y^BWJnvlG3{W4&(l zv4C+PXp0TOlEuT!ZP^QgSoYWre?HDxfN#7kS2Al!dwlQY6ljc+;JhtcBkZh6lKZu0 zpHDr3sX?9LyUFPYYi)HsXQY*H1KO6FA&m{AlCm|eH5o`ENyx14CW+yHwK&MF@Lu@j zTTjG2kbcfl{Z#LQQv1JE2uT%>7OkFor@^d^KfDosWu;oR;ue-FkDf(&jU0xF=k1T} zl9uJl%c!Bz&rFd!&R&5?>C>4eHs{l6590z#o0_~=QJ>$X9SwH!JnpYAJ*^vxdGwE^S8dCSUfi^kIqug)8)Aogj!$vce-7(daUrV z!p914*)_8V@7D?^SC(Y}&2y~qv4?NtVIF(<)!V~+)_`|4R`}4;Svq46-{(DiojovC z_*mg%g`cdRw|{nck16K(jk57Yg$37w3d?|by>xdmQ$gw3>G$fGOdfC=XcvU-<}vcs zP&s&4Vym>4R-xG6R!hl?0h#;lluP$jwZuM9lNTDT4JbME$~D2L6Kxc(D1K>}o(=Vv zb0b(Ow>X1M9p8s8WcX~32UdufCxSk$j_i*Zm6(Gxqei;i-mR=f> zjGPEERfqXMu9s%yY33{-GAuw=!wm9Nyc9oGn=k4e+^XL6^MZOyf192MTeQauT=$N5 zL*v)Ae3hf=^&1ixJRI76enfB=+;00=)a|cmd4_`x&gefRP^OP?Smi%43fQYTitp-d zh#&92?8VC#z0nK@R%_-n{%U-AvXk;N{i}OzLj-%wIIRy!G$aveN`Cj};1b$o_6$js zNbbaaiv&Jf_jh}_vi%kNB8f=7rMW~x$(Cv+p7hY$t9cJ)qM|S1E<``F?>m3?W;yR{ z9&|DEynXZ>+7$2ost*L`fi|Jaz^s=zW2wFPS^K(DV)5w=yrA^1J5$@M8P4cAt=iqm z{_ga8d~!!@sFz0N6W_O@VqVF zo-dCVE3AZD^$Wl9-D#|OYWwf-&9(OUy874u+L1f!`m&q;re*#?aXXkHJPez19?r|B zx?L;iu->N(`C<2Xv&k@#`YeYvD^6zkzd5a@^JHr0_w`hX+KHw@v+;@MBl6xEsjug} z)Lq~yl@Tsi@_VLsLr*U7ttN+Dt`bw0iX)y(e!sA6dOG_1zi=PuWxcx$>656zA$?Xe zHXhVmyS%u;A$|UHqz{=sqz|oQ=sssTWRV23CL3PXkUpF1Ohfls)@*_SVdxF%Go(*{ z4h+kST{|qV7LgeH>|!jh*on*XY2ZHC_5=4By3de4WKVL4T&(ozdDq-!;66k84Bcnw zK9N0_A$@vWUcRs!Q{))G3~y2D+Qh4s$ks&e;{RX=@nVH-Gw+u2KEwEVtJHasmks() zqd2PnpHH>0^E+?P9D9eUb28pHzhmUM`l|`~T&?qSvI23uaqfV>vJA$}|#EnYa0gT}Sx z?hUtyU+ihMpw6)D<9rJE8Q#Xt>c6oJufj-T8ojFTOS-EoKA*1OS>%=MMPK&3o;g0h z%U=WaS=X0!86-ceH)DQ@32o8XJdS^_5lC(6d)Izn-X}9`HOjj`c4Fm3(#hWjow#i8 z*!Eua?XQrbeD;a)H}Q_)E}Cuf)Zy`X<{a@GYzDJOW;@&|v4Z$P>*Piv2F03-T`+cL zQD!fmUNSFQ;V+dhrVRNs6xp+C{?hW>=x zPlLso`>*=jBBYE?%b0&&jC*@+X!|SnQGbFWEy*X^-;Ihgkj=#VNFB{N=aNiGtf$BI zTeHk!r_EW367xW_6Su%B`>ft1dxN!wg@_L+Gk6s(QasAe{d^!1D+)*Ya zcEbDhm#+RU*iSSqJehC`SthZc*g`VPrw&xhmlSqkvV^M+1wqFalyRwN)fhSa*37;5 z#qZRt$qK|TZW)!x%-)P?wo}iVc9*gC$J#$A4DO($^d}|DU~Oa@sl8fnK&7=Nb5;9_ z6eneSvu~{Ztn_4Ff}XsMwZAO&$t!FBpd<=Z(Eh95d$=b-6z!iuBkknk7{nzcBGWD& zg!ALNGBqe5ns(b3@sRcshv^r(0SV?Vkl5r;vwzFEXkY(fntR#D)$WFgwtmqR+?76& z8l#ORZnoO_MUB3kB&4UfckLf_hv)!7tZ6ACJELQm&vT@KJZhfWv&cQU8kGvsep(}B zu0NSHi|8+{!eEQ!#Gr@JLJAwQMZ=JvO(lBQzg%1`c^kLu49`msTh7sz^Ui7qIlhZ_ zaM>;6&!;koh|70F3y@7NJG0SCtfWsFOSv{-rE;$YZKeObUw?w*M>i5xxy-mtEB-a7 zTmyZU!OvQ?|3k51sSVff&za}}G_fUFE#iS!f&Ll^(AJ%m<;cTnB}MD!&&c=a@K#KI zv3};9h@`;JHJ`Q7EP_}PEMPKcwuQ4Ylhrh_*gPZFZdUv(1!fP9Ht*C~a>i;Y{*^>v z@u}#YH78a*HbYylun5;g5=75}Z}YKOxvOJrO{uwJl>1{Rwxh{R2UHbFY+;^8* znPcCj(F~orr?oYfw0SagW;w>+hR(dqO&V)=tleH7q0Eh;GrxVEdD$}-S$a??EK~Spz^v8TiCm2Yu*kD-^WB2`N| zWKVa=@zW^WdFyNBo%HU%8?L3NP#73Y^T59g9%OhE{;YL|XFGp_3&W0ie_`g%3|6fA z2L3;OZamEp-4E+;e}+JyfqGleuGm9P4qv8J7FE9+x>*V}Bg`%hQ3N?9{c04ABX*T73{}wD8_mm>v62d ztFaz?d?LuwmlIaXf_O0Dm|?~yItWV;qN%2`Ean)su+Ecp(Xr+d7lRcnbNRi(Qz5G# z)!Fx^_C*9~<1EV$gYI9)cWIp6R`o@!xJVt0=vM+HR6H&CRa~M<68+z40V@W!?ayJB3 z3%!<)s^1us-rwE&7ly4eKp5Qk|M#oc#w6!_R-cT%CxNE-c#iIg?T!g83I_jWQ!V&3 zXYi_5S20f-i!gPOG5)f~VYn9~BS$x{lg2R(bo0Tlu+;+ljxL&Y!gdJEt8s`!;Z zJU-rKd3O0i#RuK3b7W&m3-pt$NxA@t#3qD+*mt?5Xq$TLbx^sHhUPcTq?_a;Smv=`yTiff* zzD;-k(^3CdefPJ+$9rqn=gV!ez{Wk5)#OOx;}S63RW+aHE*Aa+p}ke~s7 znk4to4QA9}yQ~018qg9l3RhD%=&`&Uzfm>+Xz(pI_jJxu8upCF{kAxib5v|HpVGg> zwVZ8?MESEX;A*FH46Wu%Wmm}bLxXQw0cbrCLb1b%7=Bef)DmuJB8?kDDHa)OsGtA0 zu8~1je^@4JGe50g^~-%$S)AWaSHUlHy%=QA*=jh`=-@KRnb@)lTn> zvFgXFZwwx@ZmfEib~4?~xeE7l)%O@{-t*Y&$6imTVfTzxznr0TKUY13a!IG41E?~y zT6=*mP1B|&)3cMIhj#=6Ai6niJejl-7v*d@#pL6H(?6)|;`zT@ZP3ldI7MrB7QH*# zI{yNVJbJv(GIb?8*lMo+`2F?iRh`>#ewwqqV6oPDpW}h1cio!KiY9b0-7T56+_66z zvXI8xy_{iD-h%$sUsT(TZ4jTsX}{XX(^wdx`OJ0govz23`|q|RdjfU~WJ7$>HlF&o zi`DPq8GzG^CZlVownOx3F9b>-i$F_GVkmJX*+?3FVdiC>@g-NWpSteghU;omp1 zs~NjiIU|3o8Nlv)S?4UT&0zQ5RPT(jdg-azvyA;%z1!v2-eo;)Zzu0^xBXqcB+kqjqzqjbZp*%SsvL_Kb>|!JiL~DlN3qjP1)~~sn1@SY<$>u*m(BM z#}m?Z^Ek6*_;eU*yzX;tqWIslUnk=>U%Oo^`!sJiEy2EyA&BW`KM#&}RKEmWOCPYw z!X={{zys~DjdvGDLHwFfxT9+G{&apKt+CN$KlBuyIQMkFHa@4>f9+g7%r30;@D{@K zqc4cV#=zqL_l|DY*|-7ss(-wz4Vmj{3*O&Bor$%W-WZeqyY9__-S+aHJ(uGbpW`<; zmz~Z2i0!vO+Qaq|tIdtzdST?*Z`emNdqVia;xmKf5486~@q+XD4*Bot3*HhQ0F6Rk z@SJBJ(z{{8nPLApo?$fU-VAHng7?vzYeU|I#f~6K80-EFQ@>3xOt9=P-0ZUNFPs`zE zU@Y^>U{A-t^RPa_RKl2G5wa24fh6nKb$2Wdd~cqURGWm_EVGj{rhlzpd#FRs=)DbB ziYmbQn7u)pA(5BevJv4Iihud?QG?rsz5eyu@23bqHSuP-1X+@cfky!9^t#^5_J~0| z7`zldCF6BI!S8Stc+sH+axvgT@N4j6U`Ei*u|;^ydVGYuk=)0qg+=yxJqvu`ZuQ$L zTlSE-wqXU!2yvyc*H~Awl=8d_O(INhB^v8Llv%rdVxQh}ex}AWfW{OpHc(xo%Uc zxZj@ozwV6QTi*>QGjDn=Uz{I3&j?AB<0Ai_A2r)0Qeb;*Z2K#4Y%&vqcfru|3HofF z;POJsf}O$F-k(OM%^+7NtJgArF5`)-gQp|v%X|D=&3N-7zpZ~tRFMGj*Ky4dihz6VPY4<=#v{H zaS5v|KRiPFw)~rW}G0_hs3vP0@#>$}b-77s9q7dtP&T|(Wz!_?5vQfeo<8-@=v{e{wz8h|?z7uYtYz8tFgJo%oZkxHRBzv2hu;1Qnzm<)rp?Ff6WyA< z;S;GAjTu+Pr~KaX>m}nh21|eJW$j>TCx+&C<8L8zz<-PtA`2v2PKzB61r_ z?pR`Vc^dFI8%h?=q&x_A=XsSMP2<={ExZ$1bn_OLWo%D&=lI3pW54Eocx)j&*?HcL z-5PEM>B??BBV<0=fn~jQMsPHFx8!XTg_j%{`JOhG^d#?x76@Up>s#k%GcX@as}N>P z%k0glwrlrzYwk5<#gG*}y>G}0>&xC@jcu>l@1LwlcAuVH8nR-@iXkgDLD&8>WJQmE zG4u*H$&eL8Rt#AY8zfwUCB1?rt-_@UZ>vT`Y8ZaWa@BY?tm_w3d@1|A@$j3SwZ}ePABJ2DB=A_PgVpUtt!8 zWe9J$UwUG4e&Q8EM_T){Pr{uVKEi7OY4}5pL2@Z#m^VIDaFiGI+d-YfJJEP~y>Yx# zZHx2mt-GH0G{;Y43U_hOVDlOA8i)AXra~)`@nUy+pv7TC~ZeZUe~cS9FOH64mVvWUdH%3!y`&oUYZh1 zfSrMdFRkx$LmU`r%RZ|Vh@ZLTr~i52k9VtMeLF6sZ?9VQ$fvOm`QCpGFaTFs+w?XkRj zZ8R%m-3%GhA`wMHS`2AHPOi(Ex4l-ekJ6&YbR4I?9x-$aQME%_^eUTYh74&j zq{WaHmsMA2A9af!ACu0JD2l|>H{YkMyDgHaMIS*Lk_(qtaL!+X3GM1Ip>eev%8~2_ za|NFlWivsFUDL8QEay?tI%Fc8bRK2MjEoMk^7RA~ z!dlcX*%BHWBA$rnl_h#I6U9NDH&=yOvQoXZcwV*ovcC1s>K)%LE~=-g=J;vs;{4tc z?eQD(!@wq3Eo8eR*z|Ew|~+$kL9dSwRYtB29aU6JU5qFL1ID&D%Z6kbk|nEa(>&xuvTQDu-gU{+<9eDSL$VCXG9=5;St#%7m~(lcUnU{kk1n?9$LrHX!#!TQj*6tn2i43u4At!494}&Pk+PgNUT1Lq~R%8D4r=YNlwZ3 z-8uRbG=ioAt$b$oFHd}YoLJ8u5uvt!`b3XuO5gdi za!&D^vMkuN{I5Kn80fT@=+_wP;f~`OKb_)DSpe~0KA0>H5qA8Iv^kmMy!BA{b2_1eNPPvmy*jIr+dru}L1e60Ikl>S)v`?l_Th>iM{uOA?&Tg$c|S z=O>HQXF*^&v+YG!wmNhM70T{n$IIl+ zulI3%Yjr8`v~jz&nhe}pgaGJU>R+&T{N~!DI`;E~Pq^DEI~*dwtAd3Zuc#;b_V`I# z#_Z-R#8=0zCdcJa3TL=^Y4}6GuitnepLgm?W-JeSGb( z;hh%+*z~&X{eIhD!FOjy(DhmK?NeChta&qsm2Xw0;-tD4vTO6#rD{fM{q*KQ@F`Np zJ`|6jw<9(o9BcFWL496sA$C2lYwwJ)-sS%v>wTV;Jm}Af#H2?jKUB-cC}V9JM2GwZ&dEo z^)y(0Of)AJ+4J%i`gc9j#b?;R<7Mm9?oA`4Ut*w<^_%L&c7RdMfW>CvefmrrzSnUmNJ;t=I)3fqpp&F5t#)TUvdWgL2Mn@^4I?O)hd<`+wc z9Vb?CogV$)$2>c}{Qi3%>+E)oaQow}c|T*FvHmt)pN;GKpT5qPd1{GI{-)L}%*nn4 zrLjZVbL?pi6C%~2Oec9IL9p1%%OXQkSTZ2FQ4Q=aOK>u^gnjzgSzjlW3(yp*kqb{bGx45=v{dhce+eAO5SO&FMqF5OQuU0q_M!zNF>c?_55&9r<9 z+Z_`Gs|0E%JAhr6Jcnf^&fmW4if~x^BPz3cGA9HDQwQ$5YLB+qP^{&5-;k?iCfbk$ zLlO*0fS+g`oxi@@K1l*L!m_Nu(HlC!&u3%BJ;$PR!;vAM` zFzwZt`c!7mulMVY;@t0+P6B0zGXHdpQosuCRr}&lf+VzBY!FBmDug|(lwb+1vV1c5 zg$)yYddA)lCwyU!*B2Y@Tb^61FnXB+*>keqi(d}DAQL@X`As?6GNyN`t)LH({bhZu zhmktIOSD*eu%rQMd9{|?-D$+3FPK8fb#R(H^I1K!_X<;h*RV=^Z3j7qPKWKaDVle+ zF#wjik%NuP^cM`kQ?l-Zm*cYfHAsB?4Z#4M4HbaH_t3huZnkL;mnB#`Oeg47vTpX+ zQGY(h-Ghbo-p*L(W1Ww6-sh<9(>f=6#yTJS`Pk17%m1`ZO~fGW`?8<+_-Xn-_Vcly zkNy1J*w1^sG#0~+@@^+`18SolT4D>-9gp8U5e6+bBtCdq)vOQJvG@lbe!gG6?v`!N zG1=l8AAmjmbA4mU%Mii#595uU{!LvO```a!O<2xs{8c;KwKI=R+j9mvefe^-@I}DD z6T+Hn-u^sIB479^wCyP%3V26zp1b?gb2zhANk}Y=JE*6qDtnU-&+9X8omNgp+2A51 z2VZP;_J6$NiPZ3f#@zF1zh%CY1Aw;JyuPcvsL$(M7)Z}n^G4;*uyVicXmLF|F~?`l zUFN~%vJTeuWjB;U%UEV?XO=7Lc~isy?;}xVcvQPF5VrRLY=4Em1|JBD;8{I0{(w5| zEPwa_)CsB(Ed{2KI3Q=_+p^woEL{V4(FXkhhXA)DS@IxP2Q}lY{@`c5mcl3q3bABk zxYv+LLneu|`tvcSHDr=iJY>=;tMxKuk~W7-8hX;I>^U1rn^`hs(vV4~nf8|D8>!aSr`n;m>yZspZ1N4QHZ{?@vO?Lx%FaKnBsT$($!!ZX@eT>~((* zhz)a9;=g`Vd`L5Xle|Um{lfd|@jK0gv9{(NZ>+6E{;sQFxcy4m{)+usTVg!>Yj>=z zv9`9UXukbQ+5U=sT3bCHBm4D6dGdMfWln*c(ER9Z$rSMXn5lrnzZ$iEy>zZr#q&Qt zz^8Ra^6NY-J&}jM<<-P$IIK1kEiZB)G4!d-p)vryvT39(SEu?JPwTg|eyjeEHYzTm z@h6^DTlfn4zUx);hI%&408&~Dp4}6NA))7fYYYx8d|dZP z-URxss)EiZ9V2gC;o5o6; z8R>_07iYfi$Vu;#&fKb@tUGVXx8wS6rqQ}R{rh>fC3a++yq-Ng#PQv9Z7tC6jLiGf zr_EUmr#0eDHR!nb+cB+t7#64o4GxG>d%;P75ceB-C@X)AxE-0haA~855l`HM|wQWAxDNj z5+uhiKjg@eBg>j<(?{q_%V!LIWY{(Fu?#t~dk%(oT_0f)4LLIKk!HX2=EA^7;9}>` z@Aj_C5vWaX?hJfn;3G}G3^_97$XP!9`^P*3wV9UX2!6wz!fNMS&pZ*$PZ6Jtd{I0Y z@hZpx)x0HqDJo>e!@{c};+0=R{pm3FctUtEL~6!If{)YUTX|&S+Y#Ny+k>OSyAjVx za!~Q5;0L{`Uu3lBE5SHAT`NsyDQu*8hW=2`h6^P|PkkxRntEmA#%2{3T=V(Vf8LxP zp50@Kv-MU9qV}A2#$5!aL}=i zv)bS0I{t8ttQhNftmD)iG7gW{Y8_)gew+I-t){={k99oO@mR&+ zSBCqynq3M1Q57aF>CARo_3U@88y4lKEEj@UmnyqVg`yIdYfq&7OXgt05A3Bl9z+ zX41`Scm1w;xh<>YXM~c^=ko32UpE$q1?Ceu-JYKf!4Cp5}VHucSER*B&Hs6M@}`QD#f@#DKgfA)>_Jl69j`?5Ja*7Ma^&pm9- zI~wbGtmmkJV)537yY^F?zGKT`C%$QoHz>A~|k-%c&^P|?{T__XMc>TWG> zYvSCskgBK7ZTDB5^M`ByuCraA3a;+z99EX+lf{GXaPxR~oO8>xof;!0HO1_|_Wnf7uGT1*r`Kz?G&v?wUTlRK)BQB~J zw(0z(UBNlMB~K_P(E1-`(o@)4KXBPQQxi!_Fb;R)m!v-khgwST#xT*|gI1#o4b5Id|^q3|j90 zs(!Wp`3;O5E8$gr;)jSeV-?Mwhq=$LShY*^=T$wg{zuNl%6VQ#StG0kSCbht2XK}Y z_)qjZv*u2nl{bjViKUH`kuTSr)4O&z8L^B5XTI#-G8UMfQ+wp+dF_N> z7scORT3Gkwf~QRV#C#$b%?NVf{W_yDV z{@Jro|5)paQXJoz)E#MP7%JsiWHF?0#~$j~KX0oc#7dkiVDE7GuE zx)kgg(ZiyKlo(Q?r!(}94_snX9A)36L=TOE zt(--7c}ky6Iyfv5jvtTytd;W#+^Ibn{`Po6`{0C$E5ty6OG5qeC3q>qXTU1JAaEv@ zgrjhkcsS&7l>OAYjjsSo*s_yiRKP&z8n*Bl{c{hzfbefuuZG6rDZ@nd;YFdTEiyMg zX^3LW&M$xZQQiG{{p}$=#_NBlC;NUn6Zd6lH94<;eC}f~_RFlt+KUd&@!eLur-Z@3 zH=%Q3EbM|Po{rT$DnG+fVVjw2=8U(KcPd`LO&F^_OfWUNdG>gHdeMKGRb$m(-BsUXIFcb_)sI#G|Fd^TOL7#+x~O#vPa*4z zefBY1Gd6oMGr(md1Za>DrWP}2ojZ^~FbGK_!Dwl{@p+5mU;Z6rb$3Ros;e7yi7=U@ zs;tb&$jAr}_uqea#}jEDVY=N|^sw6kFQwC^E*^}O#e~Z>TiNVrteOXPEH-K8jNOuMc#^5uEbm7XJL%@s zUigivC(;;!toNDcq+PfHn-dpEFZ8Ni$?nF4ik088X_>i=7t~mkvEpf>>PLhn_C;O! zpsr2)@2%-+mhB^Bb8k93Hhj;H>giFA?`AizYk4&;`hJa%=fN0DOtiRZ@5p-zhxAr` zT79QI#-w|OFC>RnazSmn9!}fkn_kzLg?FmItadZZTgnV$X*9MPi^Ci|AEyxW2Ew(< z4dOqgqvPd>G+=?JVxAa-#8|{8H!@;~v52(LpEc}p_PrW?aQDONu{mj-L4s7cQKtuz zv}Bq8`Islf`tO}F)@_f^>phKiOX6?3{>HkM3Bc;UsC7%CEUj$X_dzkz8#^BQjV0gq z&7k0I*Nglk(;?vYS27)viE&L%KAx;HpPo&OS-g35$za&Hbfk=&mvU>I&Hy5hW;p+l zb^8Y#JrM)p`38aKBgNl^CE8)twZ%BrpRen4nE!GF{ya%fpf^K7SOae~>`joZDNjWV#>JH*63x%SVR zw`O#2H~Gu2dvTAA=RRXiH!C4*{IRCjW8>z`SkrHMP4h?g_ldEl$C}>8-!;~B_U$*j zPqW|0nx?rA-P?*By7#ib3OZ$c_CfcC-Y&0cD96FIyOZ@R_7q+XJ8X5gVZ@GyA;!|4 zxn=BC_U}iNjfx%CaAT{7bqp_M<7!b9EUTMM+V(}iwP<{H_u+JY>~*|2?Xd9SmA_2q zIx^?XQGFW&&QT~Wl#r#5=a!6F7(pyPHVmszpCO>Z-|^7I&-PeoMyIjXewa9N&)1CO zl3lEY+t>cD8sX>H{=d4r5%{X^dU)+W>eH?2@q_AX|K0T3+-+6r6&#j52(kGsEaDlX z_6~wW8xOe3X{=o=d{FE2;nWc5V85O&&u5+bW5tF!re3HKFcw(-{2Ul#&QTSD$0OJF z-U7Q=n`A-5sWBwg9)ZPY?(!n^-f$RXSZuvB#`+xVbF9xdy*{DaJt;8u&#`}AKB7GK z&$Btf{(6ipLjsrAC&_7jCih~p#?VO{Qzx3BZ{c6023gC$NGH8f8Y`U=E1n04_VV@A zg5AAkZdtwJcAY8ug09!JVEWFJ=_=8+^dDZF)%XpX^grr1%yVZabBiqQ$pb|L)&f1W z^~-P0jBh+Wq&>?agwLVJ^lL3Rr(w&{e|SX5HJ+#DO}}4fizn&DTf_&zo8<{G4Ep1~ zBrje6MQOh@;Omu9KKy!p`@2>8>b>ci{!q_xqweOt(C@wFn^T;R=n4!IRq~omDK8_hY0E{mxg6QvU$p%d zd`Q8hXu>TLgTBkZlzM4$izV{HxQM%mHk*7f;dS=k7+oA2#2C=TKdTwVo-_Xrr&(zh zzpQV|v#IINESlvr#`+)Y|01);j`e>P*MIhvvl@cqWB(uf|JeV}mqT)2_WvGVY^?vG z|I-Y|`hUCEe~()>*8f=lWBva$+0$>Y{h#_3OZGp#pjD3wg2dbU3s$h6L(hY%N`=Ebk@Ll~i)6v(FIv1d5taKU)X8$Jl13Yv(;>!?OCvg5`ejT2WSVG{fUAJ1%8=NwNJEvTF06HwMkjrGe#%982zb><#Rd z;DqLl7&Awplm4uGBO=d4FJe2mgPCSlo4uJoH|i5ch?#3m_TNLWM)|<|Z)(UIvSY{^ zl5NPEO=7^emmJ$)vA?p0oEv&gi>G3JyxCh5PD2yP81j|gce(;U!*Zx&DGfDqrp$hEl;2NoY zm*@bfMk;#UEQ@Z&OXg?;Ekk(1v~o6q`;Idoe7o#fMP z45Q@#fglA%`DcA%VJ4;mGe{-0Ki04KUa9gGga!A?UF3vxpPBuoHQY1DQ;jhEGWM$M z0+1Nit3G+IU`Rn*f*PpT$`WRkz`i__YsDwPo_z1|)V&qVFuXR;vaE&lF!&rl?SZ-6 zT)gZ1avA(HcZ6s_BwGEvO=ZPt4%jZaeYck)+h37f6Eiccp*V@JNIqSR?PTVKyTEX; z!%}tF`LG`uk}%);^GREfFFdh^-@p}v-E0zL@!>H?G<VY$gD|j=5$Ci${*lW|hUFYyNAt8}D>7w28`b?hmy~$A(MHP2w$9 zt2MKnp4Pp^gVW3Ze5`Yl%+2pCOWGzG(ptV7{p`iav~x~#k#l^Pxb4esS>&^L=lDx6 z-^;vIheqW0QN6D@Kkk?H%{<9?Z@-4$E8Bs`Hu2wVmVEO5v0MG_xmj*zi0aqLz`{PU zPqR=`QDoUt$$JqI6m8_g`aju4S=p`XxjX{j)gSZzRsFuaLYt3y*{7X5jWs;h@bc_2 zSH~K@Dr=bRSb9&SQNtT#O?f!UJNuNKc1HA`m87r-Ligk%O?+n>%4 znUePzE6lZaM7C>KVhwL}#b5Xd9uJ1ZKv_AR&dR>?5Qn|Y61&7nq?_-20hTw-DML(jAnRJL)< zAV$!*Kh=((JVyGfuG1ztU6Kduuv!kUPwV~n*?Z4)CG5+k%361){lN2`r{yndL>uCq zw|m~0);#I^HBv#@NZ0f4{#PBlwA+&q(F11P09tAPxA#LS8(K~az%l!vG^6mRy+Vq7LJmY+1OC3Cg<-cV1m#JoZ7aeu-qpm)xW$1-eDc&U3oEtE2`zhQ^U z5S`lgD*8aCf+4|mc`iS$>mW3mwJ=O$l`oHle@zBzfT)nkzr*;&a0qhER`*EQbXi%H}C zcFL11FHd?dQ_s`-%&{z} zgRwI%&i~%CTbA#0tHzy;Vl?I9F@n*+KdsNv!Skm1oL3nXCm8}Xx8BoX0b;`OV(-ER z*fauad%bu2E6f(Y`=%?;8~{>1QCqUksAO)IVFZd#lIQxp$p;^1k?-qPpNuo^gMC5^ zZ_GdI!A!eX|Aq&!Jo-&j?r{Lkim}4S3Ws5g6%K7-iCS6vw!%NGJ}=1tHu9Z%DpEc^ zY4V)Bw{N#yxH0nVe)b~!05qy)ol~PBdwF*3Ia6ICsM{6c{;Nl!&P8_dlN!USc90Br zxi`k3KF&B+c!_rVPpd7sm}^s^04iXShws_>TIzVq+Kdw7POX!`^JH8wC)x$j;-@Rqyf@_AOW`Edp-@VFKv*=*VH+HSM z68RLJ52^*l^1Plr^TXT-9)|asJv=yeZ!gtqW|sXL*AJRyrpg2NdHrjZ$TP5EOXP5mO$6tW_NFO(}7l^9wmRy&(7dCtO|vvLLhEKQkaOuujiEi`u% zPaE8(KeZ8R03+XgdW!Yu!zIFZk8-N_Ag~kK>cv6!cq=5TU}^<41WCcnlXF!9$Mwm(aId~C)#D*JzQ0fO*O~{(xWK~P+(tj0M|V@n zxILF-`zw-5E?y~5$J2zx#LE>=6-2@}c#dQ5*IDn?zigc3nt)t1o=Sg)#|v&f$>@Rk zZUrVEig#MhKH-pT!y07+49PYm+x|&5_HQo(B3(}2vP2_8tsqaL=;wGQ-yLbl%Jce$O}(0V z94Z6TdQ__frUsn~@+N09?CZF>K{)?Uh5;=EBx%BLci2`qMM+1E%&Qu)=E&iV0iA}%yv)Dnat>zCM^FT zbvPfYUCB}a-}`a80*l%edKIMbS)FBE8tWSZmyz|1q-v^L%{fOjPcdN z_a!XO8@*r8>5V+E&%JZ{$7i(ENXRFSNdu$Hvj;!*CgwA@zt6f_-?!?%#?f00>)oBM z7a|A4gadv()&GWZu2x;|_X2CGd3{ z-;3_l;{en6crFtu`gLi~*ygN>2c<b7ImcG__^K777^_?9@n`6neYEsXt z4HjP_YU$*uok0e~%A&u!lHHIT8qL;9%s$>$vLt;u`Az7R9u&it(IP5;pj%P^jO z_LC!c8tggexlZ1+Kh{%YWYhIkBrpoHntxySN}h_3r*`NL59_z3{lhh{%YfmW-nF~2 z`Y*R-K63RN==gN~x77|3%gZ`hW$&98;r7c=p+<#KVEtG_sWrhu#2D}v63=QT^?dox zVmCQI+ydDuM5>sp?-ch1Z$)%@Z?-fGsK*(0hp~!{!dS)OY-VPTRSe^}YO8peWBh(e znRl-JecH9`qlsCAZq1l#*o;5b9y>D^v&YhOF#eL~v>~T<^&I)GK0zDpgRs`H3+F?BjbEC!x6EvJmBl)=A<5?tFwaJ^)`+8J8+g{_g zf?L!aeS}7mXgfQ%c_dR5_TGon9_>i7n5aW)RpI){WDyo%Z&t{{(hXy1-ZPsL)p~qUC(S(!XIC{1;qtDe@)+X`21j z+U&NzKdU+JtzbRJ>tLlh^3Al~>Cvjq;zh@=691*O@BCH&jbn6px;SZqiL8et0#8jm zB1iR1nH8;f&VF3yyZYgzjcbEPB%1q^YNzF`XgTOwMxJO%B+1Wpc03^FLn@Ajd)YK7 zv9ejwy|?5Y+^BogxMCeVt8d18c?~;%X};w6X_WDBYAFau?4XP^*};>uOBL$OpUwM1 zM#Wwt={#+4_jqSsS2rSequah$t40(Ejbc;jaFrRtR<~z~1hE%KkT(NlNMQ~S-6 zLzaz4^5l>uY=Km%>%9+Wvn-Nd?(H2zk_<^QB*~B@n@N&o z7AHPD-%av~%vnSe$I_}&@+0z!@Ym9Ld0*rQZPh7xJe-?cFv-8qXNwn=D3rv{@y8t1 zxs72JPe|$pxQDnIK8Do0jDPoKwd0<=MTtO3tjX=;zRdMEogq@k|FVp^vka?h+hBKD zE4)wqE}q4w=Bn@A z9vwWFPp6TCk-J|wV96K1B=Fg;DrcVZF4_NJelEf z(Y81B-)xVCZhu9*E-eP7`C-JA#9xb>HS?}`TZ}T#Qj1;Tlj2|Lc}dKPcyp6^6$Z** z{k-C^UZ1(w-QtJgYwXXbAr*#H=y~$i?Iyd+n;{k6tW;QLV-8&*%#I-yhE!O_DBo^f zp~vnV76iW6kP1U8{2rx3j}tni!jKAyN$Xpf16MdIRB2P}VxMq@9&!P1IH)`(!OlcY zV^oJjoE+5H#K~FHnBQ2w!3c4!gEB(jWS{x^IG!UJrGql2T6jY=gWCnI3rab2y01^! zXZ(gUjyauH!xx7(!U?taZe`$6hy3&%S7S~vxuJBJ;}BAO_@@&)Iu(+{m_R&R4jpJ| zGVo*sT*Ld{vUsc1ibuX$dp%t7WX^$I>TwWH$R$kEcSvVg(TNakwa=lEGNZ_iESic& zccXd~wAAQ|*@H;_Pqijjk3KH1UvCly>)pX!d%J%RVaoBt!h;Ww$Le9V1j9PbC;w#X z(WB~#=etq&f(-YW?d$It>=#d7#`M&g#nI2)Nj~l8$M4{E%no;A70WUWzk@{Xk|F23 zsOB#B+}>u9UD~eic~@grta))L;*O!0VWaz=s0LM`L>J&k;G>H(?awU{KXMjftGnv3 z-ufID^|xtd$b!|2hj{N-jI+lO_4bA=iU)DXqRXfl$LrId;a}7ow!aKnL<@LcBlY&n zq7OUsfh7F0_PM4Th~MO$lry4LaNw_`Ezv?~8TLziVWRBpoV1DPQqf@eUuBty-XeaE zH&w+9wLEAiyra*m)uwByqu#1f(uz_I-j1BC6S=e9vbA%!uJ?J~D^L1Wqp#^34>5nL zT|AL#`f+ROabjfSD~_L+79$$Z6X{>#ap^-^P}_puLr0;nBuX#YFItqOorjJ>Gor=( zV`|0OG_mD%={?+-T6EWBF<7!vdOKH+&tnmd^>U-fCHu>b&M0Bf+*>X6`u);^vG@ZoL`IXkvpIgxtE)kI+-><|=ZDGqV%FtWWk!sLWhf%&*V^5{+cD<9|6_L(}l9R-&`C3|w}4 z*7%HXxazRJvsGv-Cpld(kJTvqu(H_pO}Cb**u6=3c@UE2$TQ2)@udF93lc=(=(saqo!^Ye&QDK=ZP?|F z1@<0%!}^As86g?89K+j^H7jxTy?G$huj^nMtiqFc#%I&4gLL-rw!i$k?|UP?yNtCO zz0JSgn0GtYD%LAIi{!jn*^bD@dnK1+VYMi8I&2U<*xglQRqp3n?cqP<#?iF*u)MvW zxss-Rt8t#=Uub;ge@|xx@5eZR649spm@r^)El2|Q#)^L{aDy` zZ`WfR2ZeV;JF@jS<~~6U!i%<3lURO*5zI$v2zGUQE;|Y0%l3gA$L7IQ{j}Qrw)SSv z*RywwlojmE)Sg(9ea`A1pP%`+u*cW+Ww%{l%QE@fqms{ma|`@*<{GolJ5A2B8}(+r zU$qVVe}DQl@`1#ld5JTiEj_4SY`@oTe?@ZRliNHKOf zwza30*QTd08BrP`2D&}mdiCtlTWNsFmueODW>~n?W_Rz5vDU|0kJmDmOR~n9WpeiR zXU$ma$!o`Iqdi}pwce8_e2oXCVn4@$$MM&FS-WVnrCG`l#QXvgcTF?^etaqsvTo>lwN8KOt{9Beb$^mr{|#q(im( zzMqn(XV(tNGjtw%m^IRTIYaVXuL_N@wBRb6ps(9&Fxy|TpORh8N58ww|~qmDTvoR^x443;X!7uE=vYk6C(b3|d@`R&SPXt<|avPu11A7Q@Dq z@PU0jJx}v_@lD{+@JYN=5y{?!R(TWnkvHMfc#DTMqxlJ+*XJeewx{(v&b#*g)K@%- zpK2!L*t})fbEX~+#WaQm?BBQ28pL?(46nPH( zO}r6|H-4G7Ba%g3I8QUPSbfS9zIXhziDn7&MHCNRBVIuMK^SO z!b9c^+iKWWS3CY_U-g`Iw%pKjhMqI@oT2Ajw4SrfQWjIrwz^yRs+#w~Xp^(B#W)0Q z6%`5pgegOiVWusAPqGIEHJy=CHDwy23^NuF@I#@rP)W#Cav(h}WYIOjc0ZeN<>1ot z8zm}3%q08}wj4~?-BoR&qu{uu!i{K+oEt=13`2VgJ^A-^9{kdE+6+=DI>Vi0mHe`L zkZglNd{?s_tyY`SiazNHgiXKZcn|omSQ7EQ-%VrND%d#sXu5}nGeLD(t~6WHG6y)nVtBC{%kSJ z#A2pi4NX@?qtsC~=3jZeJ2GUfcGM#2&G z=;9e~*$nx6jZ=RH_`T&e(gtnP{JU5Gnt{D5+pZ4(?9HyR_SUVCvG&H=+hy$;z2&t> zP8`)Pm7ULuwo{4pvZC!&cC}ccSYXM}Z%?~b=gJMp;_~Uq@xB-~lPgbJ>u2}S)PjgT z9u_E@_gP&T3z)4IrkS0WP5yl9o1HOs`!~})?W-(}u#@DAPp{Y-G8KM1Wy6xKh$WvL zHM!}Necs-t|H;|lDl+ZqF?;IgwIk;`l^>Qf$FPR_C>3_bYdEAa&iU7jgIO!5e0lr&Exa9 z+DY8RmvuZ57}3jRlbIT^j-MXQ=NJP8`r zs&FOeCnQXbj+0t+zRN;JOK*A4_}!wN%O={qP!I>2lYEWzrjwaIS^f|&&n5<7Szq>E zZrAUkCHiM9X-s+37hi)c8J_!h^i-+1lG$+DD3`>$)-z7H`mRu&+A`#Q+so* z>FIE=r8(gE!Q{oY@~myE^JG5Xv-N$%vplLhvqe?sYcnXTH0#|;XUj$!#rv7ufU$p* zTThODa^RC{$vI-Sk|(fvSC zf#Z5f5@ha2R;5N!^UWuduwJHOp&8C@3I=(9l0|TZ7d4WH)qkG({#cVKCv*Jw-b(-Y zWypwi^W!qAk@4Fm$2a>E>I+wV8{(cwJ*zfxartB|+gn)Zb{MEO8Nfc5^^m+^f!ljz z^XK30&!NOb!8?+}np6;HW?m&{|K@Q|+GsLjnVXk4HDtt)5kp2?R895$l@UEI-OwY3 z9uYQHf8QE<#8GLSo9a0GD}D@6T^l2aPYn%7kpfGaK4zw1Q>A zIC(Z;1-vAbyJk{MIsW-^==bSl_Mq9-p_>D3zzC zKl6qh8FGa5N|v!9M}{1^Q}Uwy$-IbvBp#~X4m9M*kRwBm41Hu1eWb_1q%R#zx-5nf z#)8%wt1H}$#3H0#BhGxhL#&y(dB z)9p0FOl*f-1n<_fx_hD$Qw{o?Ivd~2Jy{`%YLumy9@#7yk{#oV-iopGYHGy@VA!z3 z*d;wam$xQjJTV`=h{c}Y%<j=$Bau?iepwru`-%;{ix_0AZw zCJ4unHJjFfjzzzu0h_Z!)}-p(#Z_k9H(Are>|sO)wY!APZ9iVsA;QI`InYB+?%=eC z=o8lq|C#gM(|ZyLs+KkW>&d7~+Q7X!pN1jp5|*m=X)*sQ=^13z{pd!H2BVF3h4)Uo zkrM_lRO@;&XXbBOPqHS^u~Jze@tmtq7sR!p(yMzZ%_P@IEjrrrp5Q&*t0$!$;Ia14T9N^--c6Iy zLa*hsy2$x?>h41$p`F;b-xl43&d~G{nCGma&~Mux`UpK&o(`C7t6Wa&$ak}*_a3xK zt7w&|&qhUjSu>Qb($fsz|5Z29+unVKyx_$e@`AO}pGp1sGvtNYvtA?FH+ex$FUbow zSmZ_9$Jx9;)!uoh_B+uaqP*;VaE4p8x8*!OM?0+j8}>0{9PzP24D7M67`Vv0lZ6aP z;bmR&@ur&3w{=BwJ;GWZ)b9RE-7~n09*C2BHra5qeGQ|~3wI9A;r+3`6Q@R#ksa`t zIxpG@je&NO99y1JFLNGzh&MT2-yDOB&{G=fA%8$LOyhT0J@TX?iC&jY(fRl5-apl! z-r96d?_FKw+Wal=W8W01LASC;Zi-8s_T+AQ-S+6j_E*^dAre6`;=`X~R$w=YNy(Gb z8a}A=X_mAnJ2>yZ{3O9bdha|H37x4$V`u&(LQE9ftD1Q|?CgVIHHMysXci0!FeE_J zam~_5hFQYy8r`bBApzdB1Xw5UhXfcBU`T+sT?e3f^|Xv30fqz^65#EY0PKw+0R|4x z)_GW0>-55l#v6te@Mf(5oQh=$KsPu#M%uzo;*kqyoJS85hC2Ztg965n)+#@^0wR%! ziiRD!nibg?Q>*#WlTlTCgou;ozl$#sJH|bNI>I|3fDpa#ui$&}O`gn1qc{4{*k7>1 z#=?;kR@M+G3Qh?o*{5|6_wuA-0NU04JTyjW)AN=zt!QAEk%gwG+c|zQwZ5TOynnL1 z$-@ExeS5Q1@o#$Gcml&LA~)fEiO>*(q58P9R2Oh2E?g>iV=g7mqvzXq9V9T`=H$fk zrmUlP3TwwjKTgR0z50z*fP%-v?hbgBX$OiQA40N21#8z6D7|yTNr>k>Oab`(YITNx zS6d_u9{^vx{)LH{9%}>3Q|$ws1NEkUo{sQWU`@n_@ow2aRy=M1KdT;kvPh~YQ;i2Q z3vb}nbT`r`9MHyaNS&*nE0RV_#y~VzJiz8eVwG-JyIRK!2#e5@Jzevbc;!9Q&uh*( zD^v1@59_J1Nb@GXoO*s#$DU5ldA)Lkg)fSm&?I7izVz<$RXtCQZ8&}xD^qr<265-w&EjSJq23@SuV-ju*J8=cHawYE z)$8-v4!9Jv2O$zcbQgIO<^j$DY3nyKg#;oilJDJbkyOk3dd8PzBCB{Bv~0H6C9~4w zwR$kIdq^9*?6N;WYl-McuY2=k$eST=hP+9f>5Y;Z_M2O^s%XMDr%DClPqSmqvFcc6 zL*A^~rmOO1S&NE%8}eqzn;~z8ytzpIW|?6*HUM`P$W7h_K?GcD!ffRHjc%=%tOT!qYihg4a#4{liU1DJWYu*iDz4zJj?NI@i&VXf#=JY(IP+Q zT!$Z3%i0hhqaVCNyhzCp^2_9H;#X2nf+v~xj^|7C3(xw0*R`H8x#)PsJTLDPk5lq% zqyiJ4R`P+QQWOMH4JPp|>6hc`xwMFscnSP#oNrcZsVO0v*w<74TU3=%^A3+{99!kt!#WZ+fj5#&B+c8>?{BX! z>pWGrYINe|kONZmPv+29H8S!$>Mie;x8hBEo7e{ZUhvQGcD&-AH5oj-f3t)CP7HN?=e$k)p~>J#2Y2GTW^yUiY>ySQtxI_BzZx89SJ+iaCEZP2weU(0`W49!I$j^^! z)!B7uD{Xg|^MY<80@l%REuy{1yOBMM7BlDdYMO#L*6-`enVFC}>W$-bR9Ce-VQMt( zr&k?5)gNhAH>Xxx&NALhJ=7Mhg3cu8$3G_xqj5v5CAp@5tY4!yk>qlBWaq$tkfWB? z@_C(sPxDUcaMA1JtLp8;Oyj{QNlRQ87>$rLPsCu`(ETCD?C&I96?7UVt z4)cztfm4KCgGrN2+aFAyjEG;ck?C#yITGzgD_A#r$_nw6uj<=j_22xqYxJ01t=@Yw zV5hk80I#s(b9C6rhzX=>m?+ zhmQN69ClDY+@@Bs{pIu>s>wo-!;k&}!=m9oohpvpn2xPx<$*@NES-g}Oqai3t-vDF zuK%H!GiM(&7;bsD5Yxoi(Cge$<`Il;Er|p=TWJM`db0LPY!;eQGVtiZVYSij8$I70 zT6KBn1zCmIwkK;@`cwr;O>lO@Nh^R(#wtmszy2u8?Z-;_c{-am*Lxqm0Stje+K z$EqKzp8fweuKFIgajg2W>c^^oTUY&u9o!I}cu=wYL9iRzi6hW3{Dyl&*0D|DhnU5U zmkdFbrL@&JPPCNM(@tVE2u+j8W9Q2G}^i{Mv{3 z1~7FR-jAn?BP4^qV|)zeG`_W7xbJEvomGal)_8H;tF`B8TTP*4(7`t5Yk;9+LBUpG zKU!C9QO+8?AY7;K>)gzzFpT}HzPh7$NLVO%C5;!2tqKiJ9qiBR_kU0AZpJb4CS@Dq zC4lq3T=T}4a9!7bRed>{-riw7MJhPnt2cSG7{+(2b)JxLTcP2r`1p;wV;d1ZhT!Vq z*?2}?96k)=|LFLgCtH!RiVr9}YVWv>rkae#z`eYeW$e3$iRbvmu@tn2GYy@8uilmK zoBI7&2>#;N$#S*nb=!Lzw!b1=#pa*TyD*8^2RsuP<0?&=ohlphXJIt){#!NmkbtSBwaQ9!IqYk?|ehHkY{wx@hj4yFWvLVTu=d!<6h9rB_l8iL%$;%-{T}Zeo%g?mU$pC{;9;lL&^IWuN;pUpAuga zE*sw)Z=j=z`cI`15kev+;@9KP;_FNFOIBJ&oA*w zs!phQ!3UO%P=0rwmX_-j{a9D;*XHxT ziW|_Y1@f0){f9lSvwI9_GNj4oxl4vLv74;RdGPj2lOBh9NE58AAx(xfp}j8E587Tf zY=6bR=_WmHHl2mOBkK72r03AoTi!BE%*5W$TsO7==^Se)wFqzgdIg*3Rkgqp2zwI4 z?tiB5G8o`dV(m41fwggCIv=}{)glUzt&#k&Y@SzBo&_};T^GwH%t(D`UR;((s_c;t zf2`-C56X8XdOgp{Iul_{x4U00vrCq(3+I1acas@H)`%Bt&RfF5a{Vqj4YY81EhkSa zTL1@da~tAxuGUR$kDK-8FHuK_|`rd zS9Xw$d&!{DxP~$&ut-zO6fY4UQLcpkn_zV~2Ln^f_iF~r-T@a7tNn339ScHsgkCF+ zf7oMEYj>>CugV%@x8_f)aWvK_Nl0GK`2ofnJvm1%ZjGicL{BP@H9FSlru*SoqnEcv z*X`G1jgB=s)+luRP3pR-4ZpOHvPEu`?#wnzW^Y~~71jCI9@HP%y7||VMUPeZL)jMW zO*KJy=91g*=CP&6ha`TEzbch1Vx6{Zb8Oik%BH2Kvp}5BD*dQh;(=qo(y>^TViOa~ zD~B`tHrJf2Mxsy2hL&9Ai4@dNRzad3*{8|QCITvcj(c^#__6q<`W~%}5sN$-1J`-U zdMKjfyXD+l*YZVryxd2fb#^?f4I_9L&((Q%-t94>?XO6M`ev(o;%2ql(?ru51Eb)R zh`D6>lj%FP=wTi#S9!gc?M>sUmE=kkJr}E$ciNm|welxJfvme8Lh}Bx-z(V{$6AgD zajfNa{JpW3p-ESHE%*H7-rU%i$G$vUZDTE8^|jn%5sbCW|1;L|Sj$FWKXmM#H;|Tp zP?^K=O_L2J*<|8pWkvJt#v;C5pB%yG#0=#>kCq?SYO>Fy)+7He+c&j6@hhKCzFVG9 zp4L@=@M>25RN`WTvx5DP(aJt&Ww&fA>}xs0{hs?^mO6tkkPUvew&*W)SM7L~cP9%4 z)4o~vo`c`ewOUNQE>?g1y^V9qzxSuIw^>QaY6EA;IQ@Kl1j1l6dyKzu1YPrWJ;Sn< z)w8~GTxAE9yg#iGcvyeh=&n`*{bYJKEmzWw>J6;H^KXC0-7I~5jvt-9nF>yuVrZv1 zr<-24z3sgH6`l*DG;<-J?3p;S>}jY>vcjk*%Nrc~JmCGJEcWg z;ia9!Itw$!UGc*qa^KXk)pg(2h^tP@1jt*Kqxi$i$vEzvsix@yl5E>+ZPQy4SLdVSky>x8O^guHVxr+b)RR_A7h)E38ztR2tsa zFu0jHLI$*oy-+jKz!fB%HL5mVD($U%Bd(O?3;IqXq|&t5k8qK0OrIhlmgixU3q85x z?n5rn2Zmf&okDF;>Dyn{Jr{@d+ME9U1@{% z-*SV}OXiwf&1(3v_Hh~yTOw!2Bj`G|$S-xDw9)jV*@t&hOAu4UE`)d*0ee1sDgHLc z@vXw^JF73W(cbK=(`&R{{YB|M7i%TVEuZ87wBtw9yP}gNFKTjX(!rwHWdu%U9=%)I z*ozwP=QXF;gtWR>HFCYDq77qAieY1cZK_Y4&T_enKC#QS+iMo~`&qA`DaiZo1RO{@3lg^X!D`>4u=#OQlvM3 zFqKLCAw_N$-{j&VRQ6MftdmwliVP_-q{z@kUayPLWtMai(&b>mDuDxv!HKnTl6MDf zWC6vSz^Z|)!~VXmUF%6%2oOftX3JeMA7NS0`yWoY=wV$Gd*p0{9CQrR9`)r99MsxI5)<-?HvwH9J{HW#Y zTD~Y=V!KbG!{nFXEnpYkD&+g#Z%}anK{v-LMX9u-cwG4RnPd)=XY~qRRpR9pc3-o;Ugj^H$YkQgsL-27i zO7_*y>RY@7u{xZYofN9s9=a4n>YE4nyXC_1f-E zKcbthO68@MWSr%F2)}As8ata4NqeU+1op`?ZEqoId7#(1F#-mt0gF@mOo(DaHbMTVO+Y`+%Y*jWN&le1gWen-#wTIgU{eYi| zjLIy6zI|FpV1Y6TC0;SeV7&0qFrG8He;|Pkze^<$=-&a^U5t?o=z=k)%dGzI{x)QpVc$H*6=myUG!eJayrCtRi~JW^0Co zNzAh+`jKB#wHD}}5x{#8OREk^|9$fji+XY%JW$3~+>Ii)wR z#>yvCNP)5PFIK{gmH*~fKFKjw{@C;FH~pD#k@&v*jFtc9SANfrO9MG5Z8c2W)p%c; za%1mWF=1U|rNyV8$^+llx5mbMUK%eO;3R+Vzv`F_AM|K^IiJF;KvAjN= zwIsoF{Pd1}SS?{J7@5@gNIj_Z2DcI)+FLe$4{HQGe>fOymu9!EyXV;`NPXFjb)W^_ zaQZY^Wkff%6i%}Nc3~55&+*;<3f99}UO-sE>;>FV_JXk>OT&-A{xjPgNhXAFCVF$j z+)TcN_a_^K&C6n7EvQo&hD+}~H_M^7Yj|HninJ=ALy8P3GRJ$Lr|!<%Ek&|dE$R@-y%ug#VoUDdGvWepH%ti=<=)@O8Al$PG{HPc;U9kCt^V zI(zav#`BS$%z8N+M+A~*iibmF5#J0Sh{#9zHxu z4`2W=UHTJkN5nHtEcKDinjfbt^yzdYIqb1Lu{+BGF-MSVO(wb-M}Ae`pjqv%vRKQT zN1F-9F4fi8CwC6~F*+DYPmv!h=mePYB zuSEMp(hNys9t=ryzI-#=>nht{u`iM)9;zifeMlNQ*pM_s(wslD)%J2@`z!WG()6O> zhol*j297r*&5$$~VLc@W_|Rz@Z|-EqzoF9%Npsctb^D{!^fZKzpP8-B4;HTv?-IXK%g>#71DqCqu%D(rKd;ZN zz7dvx;v}6TuQ?A5j?B~YvHY<{KvgPHnV8j(dJGn<82AkqK`JA8s^|56NjEf(ug|mG z^8n`f%<|#G!il>~F8{i|d{xh#y0AQZ-WmRqIO*&4^r>|zUR;cXvBdD{dAr;PmmPmy zEGys0E*ivXuhFL7rk2U?&NLg0Y~}~Q+Uaa&^7`GZF?dve&co*A14;!V2x;PP^C_$q zS-ts%R5m@n?TdYlUW^P)bjX#T7?QSXVju})T_NO*ehl%z-u5c!gLA(_DO%B;uP%NuWUJjk+c z%kLlN941=oqMBzd=bXIb&UQ!ZB^e4xu6VEckbkVRd6UTt88wp+^w!jdwr1{JJg)Iq zpOhHnV3>5P($IY!cO52Qyv^DqpPD3cH0vjxW^W4%3M3w-x&$3h-nKs~U zkW6B>$i5zzuIK%8{NuX5$=CU5va-#1PxWZ(&61S6+?K5czRyI*znS=-T_n@?`a>k5 z)n}FG4M$E`@mOu*fD&USK1zht`}McQoP{|jyEwVhdt>~;cnuj{b09T`&0JDquGQyA ze^xbVvF=_&S`2BCyce0xy*atN92(MsG`{-Mf_8Iu79<MXZsg7EBx

%>YHTgh#5wmt9c^4Z8Z=(AJ(e9pcc3?EKm0t*H+OQ) zYAkkYh9o1jnlZ-oZ*@H_B?7YM*B|PFWf>pME|Yy-qtQ_Ht)OF@;ZCt zsGc#lrg5Wd(QD~IiASejE$>;mCsvl2TD&Sd*QWNu)y_Zk*LogL6TP8*ilyOM#Rf-P zph?KQgr$d3mP$gRjWPDv8vU8zTz8PKnY5X?XoofLD!xk8}z_0~=n!K-XzaFs6eH=1i$bcaOelId$nUxqX z20VZ_toh605yRNy@xdU(y5SSVw~-}bt}6V|Purp$a@37kA<23HezNY2a zzRZKO*(xrR7uoK4)-FjOXAf{VXQ!Ein`Y?9eQ+4$I>yei7ItADotGE6y{57K6}*Va zLL7gkXU!+vCwo37HMuXdF;4*=E`Kfd6W$XJDZeJhRDTZfaPo^_NzpHkrqyD;Vmhf@ zjyYi7F3;8YD^sUt`3!u>A(w_+GJ{Ubf+3fdvX~CJM8aK+Tp|aDT%t!MpXtz-a4qvE zQ2;|O(Zz4oeovoG1rzoDXy#&mWM`xC(kBv`fmzS*v?(uad+lfYEA~xa>Tx{j%tK!q zcHFYMRX8rR_o%)H=}L5NyADnngjZBBR9e)DJjt!r8+=-vD$F;ixAVp0BpWrn zSj^~?>3TS~`-oL}HX+H;wOs?N*1yEBz~BV603v~DzwLL!ZVbc+uO;`m`4}HD zQBUqEVdFgv+q)AX%d8l6w8-w*3gdw;SI!0|opCpBhsE%a4?zFYgx$iPg1zp7Wnb;s8)!9)5rUm;VfmCee#m~}_=8pRoQR--Vy7lXkZjo| zdOmRDsg*?S$efUPFSGbXeZF7+Kc7~0V&QvlKX^7vw|B;nH$&bGc{AkA#mbxL)n{!x za&720s~X$TZ-#zz)v)LN({G|d4|&7B8}?LY!?34jU)RuYE>^!;XSWUgX6QEqzkvn8 zFRr3*egE{E9_Mk`Qw_sz2>7t4hCMaxsa^5n<$SQRO~P*u%UhI)g5+*vbtK;z9|ccR z@|wv|ny7@t6v(^=ziyR5TOMYfqkq+P$s(MUoT}}QC(qZ*YF&$A`|&)9plB<nBgT zn)7^LDz3`bCSR6H)~QhaPI-0o`pM)Qx>wimE9v7hE^nM~)LF@_D^8=wS?_70Ieyy1 zbGeM0b$#I(J8$0E%)8`|meou&%I0hQD)an!gjy^_B0}Ox;;)gd)swzg^GLSn#v&F4 zL94=TkxSSd>+xK?5qHo|T7IWuj(8ST!L??^NXVPm_gcPJ-dnnyR{FDbNQEI4`mlq zpeettOf$NDIAuQ3zEyH)$K-xx2jJX^l4f&?T>fDCBbHj;XIYIkw0vo?=#$~>>*=n1e7t}0R`TS%oG^lq>-aB)IjHgUY_j6* zVsei7<|^@X@p3{HND-?(UQrmqTy6nLrCXewfp1yW9_G=m3TYs&Ub1~;9QAFQz6m}@d-wd zsIw&$$*3jnkw1~Y@iZ1CXPSB3!{zwQi zxhI8&gcuTHNQhUH_P8D`*xqxvKN6y+AM#2Z9B16biA%nM)H0=8pR5%dTR|LDEQ;{| z=&kYY@z3$J(Z^p*mP_(gq*cGUmKU&P+BjYRJ$Fb(XRWJC+Rom~rvrE$4yZXG^W+5!gduQ~n{H?R9Zr7LdXM1)Z zwN`1_GL@x@%$_ns8M{HEEt|gzJ%uM;TgxD?Xd`qrq<

LzzOzoR8gggI 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

npdX}7yY!=T~6 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 xR9#Ov^lHzG3YzKsjr@~NBepf`36 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 F<^Mh@`SSn( literal 0 HcmV?d00001 diff --git a/test_data/test_data_raw_only/raw_data/News_Report_2023-07-25.csv b/test_data/test_data_raw_only/raw_data/News_Report_2023-07-25.csv new file mode 100644 index 0000000..efffd89 --- /dev/null +++ b/test_data/test_data_raw_only/raw_data/News_Report_2023-07-25.csv @@ -0,0 +1,556 @@ +id,Title,Date,Permalink,"Research Topics","Press Types",Categories +433,"Profs. Wen-fai Fong, Raffaella Margutti and Team Create First-ever Movie of Gamma-ray Burst",07/26/2018,https://ciera.northwestern.edu/2018/07/26/profs-wen-fai-fong-raffaella-margutti-and-team-create-first-ever-movie-of-gamma-ray-burst/,"Life & Death of Stars","Northwestern Press",Science +437,"12th International LISA Symposium Held in Chicago by CIERA & AAS",07/13/2018,https://ciera.northwestern.edu/2018/07/13/12th-international-lisa-symposium-held-in-chicago-by-ciera-aas/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +769,"Shaping Globular Clusters with Black Holes",03/21/2018,https://ciera.northwestern.edu/2018/03/21/shaping-globular-clusters-with-black-holes/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","External Press",Science +774,"See The Planets Of Our Solar System While Listening To 'The Planets'",05/18/2016,https://ciera.northwestern.edu/2016/05/18/see-the-planets-of-our-solar-system-while-listening-to-the-planets/,"Exoplanets & The Solar System","External Press",Event|Interdisciplinary|Outreach +776,"Solar System Symphony Melds Music with Astronomy",05/23/2016,https://ciera.northwestern.edu/2016/05/23/solar-system-symphony-melds-music-with-astronomy/,"Exoplanets & The Solar System","External Press",Event|Interdisciplinary|Outreach +1286,"CIERA Sponsors Meeting of Gravitational Wave International Committee",07/08/2018,https://ciera.northwestern.edu/2018/07/08/ciera-sponsors-meeting-of-gravitational-wave-international-committee/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +1288,"MODEST-18 Hosted by CIERA in Santorini, Greece",06/29/2018,https://ciera.northwestern.edu/2018/06/29/modest-18-hosted-by-ciera-in-santorini-greece/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Event +1289,"Experts Gather to Discuss the Circumgalactic Medium",08/04/2018,https://ciera.northwestern.edu/2018/08/04/experts-gather-to-discuss-the-circumgalactic-medium/,"Galaxies & Cosmology","CIERA Stories",Event +1294,"CIERA’s Michelle Paulsen to Serve on National Education Leadership Committee",08/13/2018,https://ciera.northwestern.edu/2018/08/13/cieras-michelle-paulsen-to-serve-on-national-education-leadership-committee/,,"CIERA Stories",Achievement|Education +1295,"Announcing CIERA Director of Operations Kari Frank & Associate Director Shane Larson",09/01/2017,https://ciera.northwestern.edu/2017/09/01/announcing-ciera-director-of-operations-kari-frank-associate-director-shane-larson/,,"CIERA Stories",Achievement +1306,"CIERA Helps Chicago-Area High School Students Host 2018 GirlCon",06/16/2018,https://ciera.northwestern.edu/2018/06/16/ciera-helps-chicago-area-high-school-students-host-2018-girlcon/,,"CIERA Stories",Event|Interdisciplinary|Outreach +1309,"CIERA Postdocs Advance to New Positions",06/10/2018,https://ciera.northwestern.edu/2018/06/10/ciera-postdocs-advance-to-new-positions/,,"CIERA Stories","Achievement|Data Science & Computing" +1310,"Brice Ménard Presents CIERA Interdisciplinary Colloquium",06/04/2018,https://ciera.northwestern.edu/2018/06/04/brice-menard-presents-ciera-interdisciplinary-colloquium/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +1312,"CIERA Contributes to World Science Festival",05/30/2018,https://ciera.northwestern.edu/2018/05/30/ciera-contributes-to-world-science-festival/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1315,"CIERA Welcomes New Faculty Members: Wen-Fai Fong & Sasha Tchekhovskoy",09/01/2017,https://ciera.northwestern.edu/2017/09/01/ciera-welcomes-new-faculty-members-wen-fai-fong-sasha-tchekhovskoy/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +1317,"Sky & Telescope Features “Three Cosmic Chirps and Counting” by CIERA Director Vicky Kalogera",09/15/2017,https://ciera.northwestern.edu/2017/09/15/three-cosmic-chirps-and-counting/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Outreach +1318,"CIERA Partners with The Chicago Network on STEM Event",05/17/2018,https://ciera.northwestern.edu/2018/05/17/ciera-partners-with-the-chicago-network-on-stem-event/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1324,"Graduate Student Eve Chase Wins Best Poster Award at LSC-Virgo Meeting",09/01/2017,https://ciera.northwestern.edu/2017/09/01/graduate-student-eve-chase-wins-best-poster-award-at-lsc-virgo-meeting/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +1343,"CIERA Postdoc Fabio Antonini Finds that Many LIGO Sources Arise from Mergers at the Centers of Galaxies",09/15/2017,https://ciera.northwestern.edu/2017/09/15/ciera-postdoc-fabio-antonini-finds-that-many-ligo-sources-arise-from-mergers-at-the-centers-of-galaxies/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +1346,"New Study: LISA Observatory to Detect Globular Cluster Binaries in the Milky Way",05/11/2018,https://ciera.northwestern.edu/2018/05/11/new-study-lisa-observatory-to-detect-globular-cluster-binaries-in-the-milky-way/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","Northwestern Press",Science +1347,"Unique Supernova Revealed by CIERA Postdoc Giacomo Terreran",09/18/2017,https://ciera.northwestern.edu/2017/09/18/unique-supernova-revealed-by-ciera-postdoc-giacomo-terreran/,"Life & Death of Stars","External Press",Science +1351,"PhD Student Alex Gurvich Awarded Two Prestigious Fellowships",05/10/2018,https://ciera.northwestern.edu/2018/05/10/phd-student-alex-gurvich-awarded-two-prestigious-fellowships/,"Galaxies & Cosmology","CIERA Stories|External Press",Achievement +1352,"CIERA Researchers Contribute to Record-setting Gravitational Wave Detection",09/27/2017,https://ciera.northwestern.edu/2017/09/27/ciera-researchers-contribute-to-record-setting-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +1353,"Seven New Postdoctoral Researchers Join CIERA",05/09/2018,https://ciera.northwestern.edu/2018/05/09/seven-new-postdoctoral-researchers-join-ciera/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +1355,"2017 Nobel Prize in Physics Awarded to Gravitational-wave Scientists Barish, Thorne, and Weiss",10/03/2017,https://ciera.northwestern.edu/2017/10/03/2017-nobel-prize-in-physics-awarded-to-gravitational-wave-scientists-barish-thorne-and-weiss/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Interdisciplinary +1357,"Professor Vicky Kalogera Elected to National Academy of Sciences",05/02/2018,https://ciera.northwestern.edu/2018/05/02/professor-vicky-kalogera-elected-to-national-academy-of-sciences/,,"External Press|Northwestern Press",Achievement +1360,"Reach for the Stars Teacher, John Kretsos, Honored with Distinguished Secondary Teacher Award",05/02/2018,https://ciera.northwestern.edu/2018/05/02/reach-for-the-stars-teacher-john-kretsos-honored-with-distinguished-secondary-teacher-award/,,"Northwestern Press",Achievement|Education +1361,"CIERA Astronomers Help Detect Colliding Neutron Stars for the First Time",10/16/2017,https://ciera.northwestern.edu/2017/10/16/ciera-astronomers-help-detect-colliding-neutron-stars-for-the-first-time/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +1368,"Graduate Student Katie Breivik Wins Blue Apple Prize at MRM",10/14/2017,https://ciera.northwestern.edu/2017/10/14/graduate-student-katie-breivik-wins-blue-apple-prize-at-mrm/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +1370,"CIERA’s Shane Larson Joins U.S. NASA LISA Study Team",10/15/2017,https://ciera.northwestern.edu/2017/10/15/cieras-shane-larson-joins-u-s-nasa-lisa-study-team/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +1372,"Cosmologist Prof. Wendy Freedman Presents CIERA Annual Public Lecture",10/05/2017,https://ciera.northwestern.edu/2017/10/05/cosmologist-prof-wendy-freedman-presents-ciera-annual-public-lecture/,,"CIERA Stories|Northwestern Press",Event|Outreach +1377,"CIERA REU Student José Flores Wins Best Poster Presentation at 2017 SACNAS Conference",10/21/2017,https://ciera.northwestern.edu/2017/10/21/ciera-reu-student-jose-flores-wins-best-poster-presentation-at-2017-sacnas-conference/,"Galaxies & Cosmology","CIERA Stories",Achievement|Education +1379,"CIERA Affiliate Member Magdalena Osburn Named Packard Fellow",10/26/2017,https://ciera.northwestern.edu/2017/10/26/ciera-affiliate-member-magdalena-osburn-named-packard-fellow/,,"Northwestern Press",Achievement|Interdisciplinary +1381,"“Black Hole Encounter” by CIERA Postdoc Aaron Geller Sweeps 2017 Scientific Images Contest",11/02/2017,https://ciera.northwestern.edu/2017/11/02/black-hole-encounter-by-ciera-postdoc-aaron-geller-sweeps-2017-scientific-images-contest/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","Northwestern Press",Achievement|Interdisciplinary|Outreach +1382,"Greg Laughlin and Dan Tamayo Present CIERA Interdisciplinary Colloquia",12/01/2017,https://ciera.northwestern.edu/2017/12/01/greg-lauglin-and-dan-tamayo-present-ciera-interdisciplinary-colloquia/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +1390,"REU Student José Flores Velazquez Presents Research on Capitol Hill",04/20/2018,https://ciera.northwestern.edu/2018/04/20/reu-student-jose-flores-velazquez-presents-research-on-capitol-hill/,"Galaxies & Cosmology","CIERA Stories",Achievement +1391,"Computational Research Day: April 10, 2018",04/10/2018,https://ciera.northwestern.edu/2018/04/10/computational-research-day-april-10-2018/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Education|Event|Interdisciplinary" +1392,"Nature Astronomy Perspective: Professor Faucher-Giguère on Progress & Challenges in Galaxy Formation Simulation Field",04/05/2018,https://ciera.northwestern.edu/2018/04/05/nature-astronomy-perspective-professor-faucher-giguere-on-progress-challenges-in-galaxy-formation-simulation-field/,"Galaxies & Cosmology","External Press",Achievement|Science +1396,"CIERA Hosts Workshop on Radio Astronomy",03/29/2018,https://ciera.northwestern.edu/2018/03/29/ciera-hosts-workshop-on-radio-astronomy/,,"CIERA Stories",Achievement|Event +1399,"Embassy of Greece Interviews CIERA Director Vicky Kalogera",03/27/2018,https://ciera.northwestern.edu/2018/03/27/embassy-of-greece-interviews-ciera-director-vicky-kalogera/,,"External Press",Achievement +1400,"Chandra Director Belinda Wilkes Presents CIERA Interdisciplinary Colloquium",03/22/2018,https://ciera.northwestern.edu/2018/03/22/chandra-director-belinda-wilkes-presents-ciera-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +1411,"Top Telescope Access for CIERA Researchers",11/01/2017,https://ciera.northwestern.edu/2017/11/01/top-telescope-access-for-ciera-researchers/,,"CIERA Stories",Science +1413,"Graduate Student Eve Chase Leads Data Analysis of New Gravitational Wave Detection",11/10/2017,https://ciera.northwestern.edu/2017/11/10/graduate-student-eve-chase-leads-data-analysis-of-new-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +1415,"Cosmos in Concert: Celestial Suite",11/18/2017,https://ciera.northwestern.edu/2017/11/18/cosmos-in-concert-celestial-suite/,,"CIERA Stories",Event|Interdisciplinary|Outreach +1431,"CIERA Graduate Students Host Field Trip for Girls 4 Science",02/03/2018,https://ciera.northwestern.edu/2018/02/03/ciera-graduate-students-host-field-trip-for-girls-4-science/,,"CIERA Stories",Event|Outreach +1436,"Professor Claude-André Faucher-Giguère Named Cottrell Scholar",02/12/2018,https://ciera.northwestern.edu/2018/02/12/professor-claude-andre-faucher-giguere-named-cottrell-scholar/,,"External Press|Northwestern Press",Achievement +1438,"CIERA Director Vicky Kalogera Named Daniel I. Linzer Distinguished University Professor",01/31/2018,https://ciera.northwestern.edu/2018/01/31/ciera-director-vicky-kalogera-named-daniel-i-linzer-distinguished-university-professor/,,"CIERA Stories",Achievement +1445,"CIERA REU Students Present at 231st Meeting of the AAS",01/31/2018,https://ciera.northwestern.edu/2018/01/31/ciera-reu-students-present-at-231st-meeting-of-the-aas/,,"CIERA Stories",Achievement|Education|Event|Interdisciplinary +1448,"New Theory by CIERA Lindheimer Post-doctoral Fellow Alex Richings Predicts that Molecules are Born in Black Hole Winds",01/30/2018,https://ciera.northwestern.edu/2018/01/30/new-theory-by-ciera-lindheimer-post-doctoral-fellow-alex-richings-predicts-that-molecules-are-born-in-black-hole-winds/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Science +1452,"CIERA Director Vicky Kalogera Wins 2018 Dannie Heineman Prize for Astrophysics",01/10/2018,https://ciera.northwestern.edu/2018/01/10/ciera-director-vicky-kalogera-wins-2018-dannie-heineman-prize-for-astrophysics/,,"Northwestern Press",Achievement +1453,"Black Hole Breakthrough: New Insight into Mysterious Jets by CIERA Professor Sasha Tchekhovskoy",01/09/2018,https://ciera.northwestern.edu/2018/01/09/black-hole-breakthrough-new-insight-into-mysterious-jets-by-ciera-professor-sasha-tchekhovskoy/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +1456,"Astronomy from the Stratosphere: New Research by CIERA Postdoc Fabio Santos",01/09/2018,https://ciera.northwestern.edu/2018/01/09/astronomy-from-the-stratosphere-new-research-by-ciera-postdoc-fabio-santos/,"Life & Death of Stars","External Press",Science +1460,"CIERA Researchers Highlight Their Expertise in Seven Minutes or Less",12/06/2017,https://ciera.northwestern.edu/2017/12/06/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less/,"Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event|Interdisciplinary|Outreach +1465,"Professor Yusef-Zadeh: Infant Stars Surprisingly Near Galaxy’s Supermassive Black Hole",12/01/2017,https://ciera.northwestern.edu/2017/12/01/professor-yusef-zadeh-infant-stars-surprisingly-near-galaxys-supermassive-black-hole/,"Black Holes & Dead Stars|Life & Death of Stars","External Press|Northwestern Press",Science +1468,"CIERA Astronomers Share Stories of Scientific Discovery at Neutron Star Merger Event",11/28/2017,https://ciera.northwestern.edu/2017/11/28/ciera-astronomers-share-stories-of-scientific-discovery-at-neutron-star-merger-event/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +1490,"CIERA Director Vicky Kalogera Meets with U.S. Congressman",02/05/2018,https://ciera.northwestern.edu/2018/02/05/ciera-director-vicky-kalogera-meets-with-u-s-congressman/,,"CIERA Stories",Achievement|Outreach +1493,"Another Way for Stellar-mass Black Holes to Grow Larger",08/17/2018,https://ciera.northwestern.edu/2018/08/17/another-way-for-stellar-mass-black-holes-to-grow-larger/,"Black Holes & Dead Stars","External Press",Science +1544,"CIERA Celebrates a Decade Of Discovery",09/13/2018,https://ciera.northwestern.edu/2018/09/13/ciera-celebrates-aa-decade-of-discovery/,,"Northwestern Press",Event|Outreach +1613,"CIERA REU Panel Discussion Explores Careers in Astrophysics",08/06/2018,https://ciera.northwestern.edu/2018/08/06/ciera-reu-panel-discussion-explores-careers-in-astrophysics/,,"CIERA Stories",Education +1615,"2018 REU Students Present Their Research at Annual Poster Session",08/24/2018,https://ciera.northwestern.edu/2018/08/24/2018-reu-students-present-their-research-at-annual-poster-session/,,"CIERA Stories",Achievement|Event|Interdisciplinary|Outreach +1626,"Announcing CIERA's 2018 Summer Undergraduate Researchers",06/01/2018,https://ciera.northwestern.edu/2018/06/01/announcing-cieras-2018-summer-undergraduate-researchers/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary" +1668,"Astronomers Witness Birth of New Star from Stellar Explosion",09/20/2018,https://ciera.northwestern.edu/2018/09/20/astronomers-witness-birth-of-new-star-from-stellar-explosion/,"Life & Death of Stars","External Press",Science +1681,"Prof. Mel Ulmer Featured in Sky at Night Magazine",08/24/2018,https://ciera.northwestern.edu/2018/08/24/prof-mel-ulmer-featured-in-sky-at-night-magazine/,,"External Press",Achievement|Science +1696,"Welcome Christopher Berry, Inaugural CIERA Board of Visitors Research Professor",09/01/2018,https://ciera.northwestern.edu/2018/09/01/welcome-christopher-berry-inaugural-ciera-board-of-visitors-research-professor/,,"CIERA Stories",Achievement +1698,"CIERA Researchers Featured in “Humans of LIGO”",09/20/2018,https://ciera.northwestern.edu/2018/09/20/ciera-researchers-featured-in-humans-of-ligo/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +1701,"Phil Nicholson Presents CIERA Interdisciplinary Colloquium, Joint with EPS",09/27/2018,https://ciera.northwestern.edu/2018/09/27/phil-nicholson-presents-ciera-interdisciplinary-colloquium-joint-with-eps/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +1914,"CIERA Director Vicky Kalogera Presents Annual Public Lecture",10/25/2018,https://ciera.northwestern.edu/2018/10/25/ciera-director-vicky-kalogera-presents-annual-public-lecture/,,"CIERA Stories",Event|Outreach +1928,"CIERA Director Vicky Kalogera Appointed CIFAR Senior Fellow",08/31/2017,https://ciera.northwestern.edu/2017/08/31/ciera-director-vicky-kalogera-appointed-cifar-senior-fellow/,,"CIERA Stories",Achievement +1930,"The Boulder Philharmonic Performs 'Celestial Suite' as Part of 2018-19 Season: Open Space",10/25/2018,https://ciera.northwestern.edu/2018/10/25/the-boulder-philharmonic-performs-celestial-suite-as-part-of-2018-19-season-open-space/,,"CIERA Stories|External Press",Event|Interdisciplinary|Outreach +1935,"CIERA’s Shane Larson to Give Dome Lecture Streamed World-wide",10/26/2018,https://ciera.northwestern.edu/2018/10/26/cieras-shane-larson-to-give-dome-lecture-streamed-world-wide/,,"CIERA Stories",Achievement|Event|Outreach +1940,"CIERA Postdoc Alum Carl Rodriguez Featured in Northwestern Magazine",08/31/2017,https://ciera.northwestern.edu/2017/08/31/ciera-postdoc-alum-carl-rodriguez-featured-in-northwestern-magazine/,"Black Holes & Dead Stars","CIERA Stories",Achievement +1947,"Dearborn Observatory Welcomes 1500 Visitors During Open House Chicago",10/26/2018,https://ciera.northwestern.edu/2018/10/26/dearborn-observatory-welcomes-1500-visitors-during-open-house-chicago/,,"CIERA Stories",Event|Outreach +1950,"New Issue of “LIGO Magazine” Available",08/31/2017,https://ciera.northwestern.edu/2017/08/31/new-issue-of-ligo-magazine-available/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +2007,"CIERA Pop-up Eclipse Viewing at Tech Allows Hundreds to Enjoy Rare Sky Event",08/22/2017,https://ciera.northwestern.edu/2017/08/22/ciera-pop-up-eclipse-viewing-at-tech-allows-hundreds-to-enjoy-rare-sky-event/,,"CIERA Stories|External Press|Northwestern Press",Event|Outreach +2012,"Astronomy on Tap Hosts Eclipse-themed Event at Begyle Brewing",08/15/2017,https://ciera.northwestern.edu/2017/08/15/astronomy-on-tap-hosts-eclipse-themed-event-at-begyle-brewing/,,"CIERA Stories",Event|Outreach +2015,"2017 REU Students Present Their Research at Annual Poster Session",08/18/2017,https://ciera.northwestern.edu/2017/08/18/2017-reu-students-present-their-research-at-annual-poster-session/,,"CIERA Stories",Achievement|Education|Event|Interdisciplinary|Outreach +2032,"CIERA REU Students Discover Careers in Astronomy",07/31/2017,https://ciera.northwestern.edu/2017/07/31/ciera-reu-students-discover-careers-in-astronomy/,,"CIERA Stories",Education|Event +2034,"CIERA's 2017 Summer Student Researchers",07/30/2017,https://ciera.northwestern.edu/2017/07/30/cieras-2017-summer-student-researchers/,,"CIERA Stories",Education|Interdisciplinary +2084,"CIERA Prof. Raffaella Margutti Helps Discover ‘Heavy Metal’ Supernova Rocking Out",07/31/2017,https://ciera.northwestern.edu/2017/07/31/2084/,"Life & Death of Stars","External Press|Northwestern Press",Science +2087,"Intergalactic Transfer: A New Study on How Matter Moves Across the Universe, Led by CIERA Postdoc Daniel Anglés-Alcázar",07/31/2017,https://ciera.northwestern.edu/2017/07/31/intergalactic-transfer-a-new-study-on-how-matter-moves-across-the-universe-led-by-ciera-postdoc-daniel-angles-alcazar/,"Galaxies & Cosmology","External Press|Northwestern Press",Science +2088,"The Computing Power Behind CIERA’s Galaxy Formation Research",07/20/2017,https://ciera.northwestern.edu/2017/07/20/the-computing-power-behind-cieras-galaxy-formation-research/,"Galaxies & Cosmology","Northwestern Press",Achievement +2089,"Graduate Students Engage with 7th/8th Grade Students & Families",07/01/2017,https://ciera.northwestern.edu/2017/07/01/graduate-students-engage-with-7th-8th-grade-students-families/,,"CIERA Stories",Event|Outreach +2111,"CIERA Professor Raffaella Margutti Group Research Featured in Nature Magazine",11/02/2018,https://ciera.northwestern.edu/2018/11/02/ciera-professor-raffaella-margutti-group-research-featured-in-nature-magazine/,"Life & Death of Stars","External Press",Science +2199,"CIERA Director Vicky Kalogera Featured in Northwestern Global Impact Video",06/12/2017,https://ciera.northwestern.edu/2017/06/12/ciera-director-vicky-kalogera-featured-in-northwestern-global-impact-video/,,"Northwestern Press",Achievement +2201,"Graduate Student Fani Dosopoulou Receives Holt Award",06/10/2017,https://ciera.northwestern.edu/2017/06/10/graduate-student-fani-dosopoulou-receives-holt-award/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +2203,"CIERA Hosts Supernovae: The LSST Revolution Workshop",06/03/2017,https://ciera.northwestern.edu/2017/06/03/ciera-hosts-supernovae-the-lsst-revolution-workshop/,"Life & Death of Stars","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2209,"LIGO Detects Gravitational Waves for Third Time",06/02/2017,https://ciera.northwestern.edu/2017/06/02/ligo-detects-gravitational-waves-for-third-time/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +2210,"Astronomy Students Awarded Best Senior Thesis",05/30/2017,https://ciera.northwestern.edu/2017/05/30/astronomy-students-awarded-best-senior-thesis/,"Black Holes & Dead Stars","CIERA Stories",Achievement +2213,"""Science Sonification"" Brings Together Composers & STEM Researchers",05/23/2017,https://ciera.northwestern.edu/2017/05/23/science-sonification-brings-together-composers-stem-researchers/,,"CIERA Stories",Event|Interdisciplinary|Outreach +2305,"CIERA Postdocs Advance to New Positions",05/19/2017,https://ciera.northwestern.edu/2017/05/19/ciera-postdocs-advance-to-new-positions-2/,,"CIERA Stories",Achievement|Interdisciplinary +2306,"Postdoctoral Fellow Dan Foreman-Mackey Presents CIERA Spring Interdisciplinary Colloquium",05/18/2017,https://ciera.northwestern.edu/2017/05/18/postdoctoral-fellow-dan-foreman-mackey-presents-ciera-spring-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2311,"Physics Makes Music in A Shout Across Time",05/16/2017,https://ciera.northwestern.edu/2017/05/16/physics-makes-music-in-a-shout-across-time/,,"CIERA Stories|External Press|Northwestern Press",Event|Interdisciplinary|Outreach +2321,"Chicago Woman Magazine Features CIERA Director Prof. Kalogera",05/06/2017,https://ciera.northwestern.edu/2017/05/06/chicago-woman-magazine-features-ciera-director-prof-kalogera/,,"External Press",Achievement +2323,"LIGO Co-founder Rainer Weiss Presents CIERA Annual Public Lecture",05/03/2017,https://ciera.northwestern.edu/2017/05/03/ligo-co-founder-rainer-weiss-presents-ciera-annual-public-lecture/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +2337,"CIERA Director Prof. Kalogera Receives Walder Award for Research Excellence",05/01/2017,https://ciera.northwestern.edu/2017/05/01/ciera-director-prof-kalogera-receives-walder-award-for-research-excellence/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +2338,"CIERA Contributes to Northwestern’s Computational Research Day",04/30/2017,https://ciera.northwestern.edu/2017/04/30/ciera-contributes-to-northwesterns-computational-research-day/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press","Achievement|Data Science & Computing|Event|Interdisciplinary" +2340,"Prof. Faucher-Giguère Receives NSF Honor for Young Faculty",04/29/2017,https://ciera.northwestern.edu/2017/04/29/prof-faucher-giguere-receives-nsf-honor-for-young-faculty/,"Galaxies & Cosmology","Northwestern Press",Achievement +2341,"CIERA to Welcome New Postdocs in Fall 2017",04/28/2017,https://ciera.northwestern.edu/2017/04/28/ciera-to-welcome-new-postdocs-in-fall-2017/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing" +2343,"Rocco Coppejans Joins CIERA’s Mel Ulmer to Work on Mirrors in Space",04/27/2017,https://ciera.northwestern.edu/2017/04/27/rocco-coppejans-joins-cieras-mel-ulmer-to-work-on-mirrors-in-space/,,"CIERA Stories",Achievement +2344,"CIERA Researchers Highlight Their Expertise in Seven Minutes or Less",03/17/2017,https://ciera.northwestern.edu/2017/03/17/ciera-researchers-highlight-their-expertise-in-seven-minutes-or-less-2/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Education|Event|Interdisciplinary|Outreach +2408,"CIERA Hosts Dr. Beth Willman as Interdisciplinary Colloquium Speaker",11/12/2018,https://ciera.northwestern.edu/2018/11/12/ciera-hosts-dr-beth-willman-as-interdisciplinary-colloquium-speaker/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +2437,"New Issue of “LIGO Magazine” Features Gravity Spy Article by Mike Zevin",03/15/2017,https://ciera.northwestern.edu/2017/03/15/new-issue-of-ligo-magazine-features-gravity-spy-article-by-mike-zevin/,"Gravitational Waves & Multi-Messenger Astronomy","External Press","Achievement|Data Science & Computing|Interdisciplinary|Outreach" +2439,"CIERA Pilot Program Exposes Students to Astronomy Research",03/13/2017,https://ciera.northwestern.edu/2017/03/13/ciera-pilot-program-exposes-students-to-astronomy-research/,,"CIERA Stories",Education +2442,"CIERA Professor Giles Novak Joins ALMA Science Advisory Committee",03/12/2017,https://ciera.northwestern.edu/2017/03/12/ciera-professor-giles-novak-joins-alma-science-advisory-committee/,,"CIERA Stories",Achievement +2444,"Professor Jeremy Kasdin Presents CIERA Winter Interdisciplinary Colloquium",03/02/2017,https://ciera.northwestern.edu/2017/03/02/professor-jeremy-kasdin-presents-ciera-winter-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +2451,"Media Seek Expertise on New Planets in TRAPPIST-1 System",02/28/2017,https://ciera.northwestern.edu/2017/02/28/media-seek-expertise-on-new-planets-in-trappist-1-system/,"Exoplanets & The Solar System","External Press",Outreach +2515,"CIERA Hosts Astronomy Day for Middle School Teachers",02/25/2017,https://ciera.northwestern.edu/2017/02/24/ciera-hosts-astronomy-day-for-middle-school-teachers/,,"CIERA Stories",Education|Event +2519,"News from CIERA Professor Farhad Yusef-Zadeh on Star, Planet Formation in Milky Way",01/31/2017,https://ciera.northwestern.edu/2017/01/31/news-from-ciera-professor-farhad-yusef-zadeh-on-star-planet-formation-in-milky-way/,"Life & Death of Stars","External Press",Science +2521,"Graduate Student Katie Breivik Wins Chambliss Honorable Mention for Research Poster at AAS",01/30/2017,https://ciera.northwestern.edu/2017/01/30/graduate-student-katie-breivik-wins-chambliss-honorable-mention-for-research-poster-at-aas/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +2523,"Supernova News from CIERA Professor Raffaella Margutti",01/29/2017,https://ciera.northwestern.edu/2017/01/29/supernova-news-from-ciera-professor-raffaella-margutti/,"Life & Death of Stars","External Press",Science +2525,"CIERA REU Students Present at 229th Meeting of the AAS",01/28/2017,https://ciera.northwestern.edu/2017/01/28/ciera-reu-students-present-at-229th-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement|Education|Interdisciplinary +2536,"CIERA Postdoctoral Alum Laura Fissel Presents Plenary Talk at AAS229",01/27/2017,https://ciera.northwestern.edu/2017/01/27/ciera-postdoctoral-alum-laura-fissel-presents-plenary-talk-at-aas229/,,"CIERA Stories",Achievement +2549,"Professor Mel Ulmer Discusses Geoengineering at AAS229",01/20/2017,https://ciera.northwestern.edu/2017/01/20/professor-mel-ulmer-discusses-geoengineering-at-aas229/,,"CIERA Stories|External Press",Achievement|Interdisciplinary +2551,"Four New Postdoctoral Researchers Join CIERA",01/01/2017,https://ciera.northwestern.edu/2017/01/01/four-new-postdoctoral-researchers-join-ciera/,"Exoplanets & The Solar System|Galaxies & Cosmology|Life & Death of Stars","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +2642,"Lecture by CIERA Associate Director Shane Larson Featured in 'Astronomy' Magazine",11/20/2018,https://ciera.northwestern.edu/2018/11/20/lecture-by-ciera-assistant-director-shane-larson-featured-in-astronomy-magazine/,,"External Press",Achievement|Outreach +2747,"Honorable Mention to Scotty Coughlin: LIGO Laboratory Awards for Excellence",11/26/2018,https://ciera.northwestern.edu/2018/11/26/honorable-mention-to-scotty-coughlin-ligo-laboratory-awards-for-excellence/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Outreach +2768,"Graduate Student Zachary Hafen Wins Award in the 2016 Northwestern Scientific Images Contest",12/31/2016,https://ciera.northwestern.edu/2016/12/31/graduate-student-zachary-hafen-wins-award-in-the-2016-northwestern-scientific-images-contest/,"Galaxies & Cosmology","Northwestern Press",Achievement +2783,"Fred Rasio Named AAAS Fellow, for Extraordinary Achievement in Advancing Science",11/27/2018,https://ciera.northwestern.edu/2018/11/27/fred-rasio-named-aaas-fellow-for-extraordinary-achievement-in-advancing-science/,,"External Press|Northwestern Press",Achievement +2819,"Year-in-Review Honors for the LIGO Scientific Collaboration",12/30/2016,https://ciera.northwestern.edu/2016/12/30/year-in-review-honors-for-the-ligo-scientific-collaboration/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +2825,"Prospect High School Hosts Panel of Women Astrophysicists from Northwestern",12/29/2016,https://ciera.northwestern.edu/2016/12/29/prospect-high-school-hosts-panel-of-women-astrophysicists-from-northwestern/,,"CIERA Stories",Event|Outreach +2828,"Gravitational Waves Detection Featured in Holiday Greeting to Northwestern Alumni",12/28/2016,https://ciera.northwestern.edu/2016/12/28/gravitational-waves-detection-featured-in-holiday-greeting-to-northwestern-alumni/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +2829,"Postdocs & Graduate Students Present at Annual CIERA Research Jamboree",12/15/2016,https://ciera.northwestern.edu/2016/12/15/postdocs-graduate-students-present-at-annual-ciera-research-jamboree/,,"CIERA Stories",Event +2977,"Four New Gravitational-Wave Detections",12/03/2018,https://ciera.northwestern.edu/2018/12/03/four-new-gravitational-wave-detections/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +2989,"Executive Director of LIGO Laboratory Presents CIERA Fall Interdisciplinary Colloquium",12/01/2016,https://ciera.northwestern.edu/2016/12/01/executive-director-of-ligo-laboratory-presents-ciera-fall-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press",Event|Interdisciplinary +2995,"Audio Series on Northwestern Couples Features Vicky Kalogera and Fred Rasio",11/30/2016,https://ciera.northwestern.edu/2016/11/30/audio-series-on-northwestern-couples-features-vicky-kalogera-and-fred-rasio/,,"Northwestern Press",Achievement +2996,"Graduate Student Matthew Rickert Wins Reber Fellowship",11/29/2016,https://ciera.northwestern.edu/2016/11/29/graduate-student-matthew-rickert-wins-reber-fellowship/,"Life & Death of Stars","CIERA Stories",Achievement +2999,"CIERA’s Mel Ulmer Leading Audacious Project to Unfurl World’s Largest Space Telescope",11/28/2016,https://ciera.northwestern.edu/2016/11/28/cieras-mel-ulmer-leading-audacious-project-to-unfurl-worlds-largest-space-telescope/,,"Northwestern Press",Interdisciplinary|Science +3000,"CIERA REU Students Present at PhysCon",11/27/2016,https://ciera.northwestern.edu/2016/11/27/ciera-reu-students-present-at-physcon/,"Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Achievement|Education +3002,"Graduate Student Katie Breivik’s Paper Featured on AAS Nova",11/26/2016,https://ciera.northwestern.edu/2016/11/26/graduate-student-katie-breiviks-paper-featured-on-aas-nova/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","External Press",Achievement|Science +3003,"Rapid Fire Research Kicks Off",11/01/2016,https://ciera.northwestern.edu/2016/11/01/rapid-fire-research-kicks-off/,,"CIERA Stories",Achievement|Education|Event +3005,"CIERA REU Student Beverly Lowell Presents Research at Symposium",10/31/2016,https://ciera.northwestern.edu/2016/10/31/ciera-reu-student-beverly-lowell-presents-research-at-symposium/,"Exoplanets & The Solar System","CIERA Stories",Achievement|Education|Interdisciplinary +3007,"CIERA’s Board of Visitors Meets with Top University Officials",10/30/2016,https://ciera.northwestern.edu/2016/10/30/cieras-board-of-visitors-meets-with-top-university-officials/,,"CIERA Stories",Event +3053,"Dearborn Observatory Welcomes 1,500 During Architecture Festival",10/17/2016,https://ciera.northwestern.edu/2016/10/17/dearborn-observatory-welcomes-1500-during-architecture-festival/,,"CIERA Stories|Northwestern Press",Event|Outreach +3059,"Gravity Spy: The New Gravitational-Wave Project Using Citizen Science",10/14/2016,https://ciera.northwestern.edu/2016/10/14/gravity-spy-the-new-gravitational-wave-project-using-citizen-science/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press","Data Science & Computing|Interdisciplinary|Outreach" +3062,"Graduate Student Kyle Kremer Recognized for Exceptional Work at NSF Event",10/03/2016,https://ciera.northwestern.edu/2016/10/03/graduate-student-kyle-kremer-recognized-for-exceptional-work-at-nsf-event/,,"CIERA Stories",Achievement|Interdisciplinary +3063,"Undergraduate Rebecca Diesing Honored with Oliver Marcy Scholarship",10/01/2016,https://ciera.northwestern.edu/2016/10/01/undergraduate-rebecca-diesing-honored-with-oliver-marcy-scholarship/,,"CIERA Stories",Achievement|Education +3065,"Carl Rodriguez Awarded MIT Pappalardo Postdoctoral Fellowship in Physics",09/30/2016,https://ciera.northwestern.edu/2016/09/30/carl-rodriguez-awarded-mit-pappalardo-postdoctoral-fellowship-in-physics/,,"CIERA Stories",Achievement +3208,"CIERA’s Laura Sampson Wins L'Oréal USA 2016 For Women in Science Fellowship",09/27/2016,https://ciera.northwestern.edu/2016/09/27/cieras-laura-sampson-wins-loreal-usa-2016-for-women-in-science-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3212,"CIERA Graduate Students Demonstrate Their Expertise in Seven Minutes or Less",09/14/2016,https://ciera.northwestern.edu/2016/09/14/ciera-graduate-students-demonstrate-their-expertise-in-seven-minutes-or-less/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Education|Event|Interdisciplinary|Outreach +3218,"Dearborn Observatory and CIERA Contribute to NU STEM & Sports Outreach Event",09/13/2016,https://ciera.northwestern.edu/2016/09/13/dearborn-observatory-and-ciera-contribute-to-nu-stem-sports-outreach-event/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +3224,"CIERA’s Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge",09/02/2016,https://ciera.northwestern.edu/2016/09/02/cieras-fellows-at-the-frontiers-2016-astronomy-research-on-the-cutting-edge/,,"CIERA Stories",Event +3225,"“Galactic Bloom” Takes 2nd Place & Student Choice Award in ‘Beauty of Science’ Contest",12/13/2018,https://ciera.northwestern.edu/2018/12/13/galactic-bloom-takes-2nd-place-student-choice-award-in-beauty-of-science-contest/,"Galaxies & Cosmology","Northwestern Press",Achievement|Interdisciplinary +3250,"Raffaella Margutti Joins CIERA to Investigate the Biggest Explosions in Our Universe",09/01/2016,https://ciera.northwestern.edu/2016/09/01/raffaella-margutti-joins-ciera-to-investigate-the-biggest-explosions-in-our-universe/,"Life & Death of Stars","CIERA Stories|Northwestern Press",Achievement +3254,"Sasha Tchekhovskoy Receives High-Performance Computing Award",12/18/2018,https://ciera.northwestern.edu/2018/12/18/sasha-tchekhovskoy-receives-high-performance-computing-award/,"Black Holes & Dead Stars","CIERA Stories","Achievement|Data Science & Computing|Science" +3257,"Shane Larson Wins Grand Prize in Instructables Optics Contest",12/18/2018,https://ciera.northwestern.edu/2018/12/18/shane-larson-wins-grand-prize-in-instructables-optics-contest/,,"CIERA Stories|External Press",Achievement|Education|Interdisciplinary|Outreach +3274,"Birth of a Black Hole or Neutron Star Captured for First Time",01/10/2019,https://ciera.northwestern.edu/2019/01/10/birth-of-a-black-hole-or-neutron-star-captured-for-first-time/,"Black Holes & Dead Stars|Life & Death of Stars","External Press|Northwestern Press",Science +3278,"CIERA Hosts GNOME Data Analysis Bootcamp",08/31/2016,https://ciera.northwestern.edu/2016/08/31/ciera-hosts-gnome-data-analysis-bootcamp/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Science" +3280,"REU Poster Session Celebrates Hard Work with Sweet Rewards",08/30/2016,https://ciera.northwestern.edu/2016/08/30/reu-poster-session-celebrates-hard-work-with-sweet-rewards/,,"CIERA Stories",Education|Event|Interdisciplinary +3301,"NASA Illinois Space Grant Recipients Present Their Summer Research Projects",08/29/2016,https://ciera.northwestern.edu/2016/08/29/nasa-illinois-space-grant-recipients-present-their-summer-research-projects/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +3308,"CIERA's 2016 Summer Student Researchers",08/28/2016,https://ciera.northwestern.edu/2016/08/28/cieras-2016-summer-student-researchers/,,"CIERA Stories",Education +3311,"CIERA Hosts Inaugural Cohort of New LSSTC Data Science Fellowship Program",08/27/2016,https://ciera.northwestern.edu/2016/08/27/ciera-hosts-inaugural-cohort-of-new-lsstc-data-science-fellowship-program/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary|Outreach" +3314,"Physics and Astronomy Department Rising in Impact and Visibility",07/30/2016,https://ciera.northwestern.edu/2016/07/30/physics-and-astronomy-department-rising-in-impact-and-visibility/,,"Northwestern Press",Achievement +3316,"The Legacy of Scientific Discovery - by Mike Zevin, LIGO Graduate Student",07/29/2016,https://ciera.northwestern.edu/2016/07/29/the-legacy-of-scientific-discovery-by-mike-zevin-ligo-graduate-student/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement|Outreach|Science +3317,"CIERA Students Awarded Funding for Summer Research and Illinois Space Grant Projects",07/14/2016,https://ciera.northwestern.edu/2016/07/14/ciera-students-awarded-funding-for-summer-research-and-illinois-space-grant-projects/,,"CIERA Stories",Achievement|Education|Interdisciplinary +3329,"Experts Share with CIERA REU Students at Career Panel Discussion",07/13/2016,https://ciera.northwestern.edu/2016/07/13/experts-share-with-ciera-reu-students-at-career-panel-discussion/,"Stellar Dynamics & Stellar Populations","CIERA Stories","Data Science & Computing|Education|Event|Outreach" +3330,"CIERA Graduate Students Dazzle the Public at Ravinia’s Astronomy Night",07/13/2016,https://ciera.northwestern.edu/2016/07/13/ciera-graduate-students-dazzle-the-public-at-ravinias-astronomy-night/,,"CIERA Stories",Education|Event|Outreach +3332,"Data Science is Transforming Research at Northwestern-CIERA",07/12/2016,https://ciera.northwestern.edu/2016/07/12/data-science-is-transforming-research-at-northwestern-ciera/,,"CIERA Stories|Northwestern Press","Data Science & Computing" +3334,"LIGO Team Announces Second Gravitational-Wave Event",06/30/2016,https://ciera.northwestern.edu/2016/06/30/ligo-team-announces-second-gravitational-wave-event/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Event|Science +3336,"‘Mosh Pits’ in Star Clusters a Likely Source of LIGO’s First Black Holes",06/29/2016,https://ciera.northwestern.edu/2016/06/29/mosh-pits-in-star-clusters-a-likely-source-of-ligos-first-black-holes/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +3338,"Jian Cao Receives Manufacturing Medal",06/27/2016,https://ciera.northwestern.edu/2016/06/27/jian-cao-receives-manufacturing-medal/,,"CIERA Stories|Northwestern Press",Achievement +3339,"Graduate Students Participate in High School Research Project Showcase",06/24/2016,https://ciera.northwestern.edu/2016/06/24/graduate-students-participate-in-high-school-research-project-showcase/,,"CIERA Stories",Education|Event|Outreach +3343,"CIERA’s Farhad Yusef-Zadeh Leads Discussion of Milky Way Core at Science Café",06/01/2016,https://ciera.northwestern.edu/2016/06/01/cieras-farhad-yusef-zadeh-leads-discussion-of-milky-way-core-at-science-cafe/,"Galaxies & Cosmology","CIERA Stories",Education|Event +3345,"CIERA Researchers Help Build a Far-Infrared Camera for SOFIA",05/29/2016,https://ciera.northwestern.edu/2016/05/29/ciera-researchers-help-build-a-far-infrared-camera-for-sofia/,"Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Achievement|Science +3376,"Paper by CIERA Postdoc Emily Leiner Highlighted on AAS Nova Site",01/28/2019,https://ciera.northwestern.edu/2019/01/28/paper-by-ciera-postdoc-emily-leiner-highlighted-on-aas-nova-site/,"Stellar Dynamics & Stellar Populations","External Press",Achievement|Science +3398,"CIERA Director Vicky Kalogera Speaks at (En)Lightning Talks Chicago",05/20/2016,https://ciera.northwestern.edu/2016/05/20/ciera-director-vicky-kalogera-speaks-at-enlightning-talks-chicago/,,"CIERA Stories|External Press",Event|Outreach +3400,"Graduate Student Makes Cosmic Music",05/25/2016,https://ciera.northwestern.edu/2016/05/25/graduate-student-makes-cosmic-music/,,"CIERA Stories",Event|Interdisciplinary|Outreach +3410,"Katrin Heitmann Explores the Dark Universe at CIERA Interdisciplinary Colloquium",01/15/2019,https://ciera.northwestern.edu/2019/01/15/katrin-heitmann-explores-the-dark-universe-at-ciera-interdisciplinary-colloquium/,"Galaxies & Cosmology","CIERA Stories",Event|Interdisciplinary +3415,"Total Lunar Eclipse Captivates on Frigid Night",01/20/2019,https://ciera.northwestern.edu/2019/01/20/total-lunar-eclipse-captivates-on-frigid-night/,,"CIERA Stories",Event|Outreach +3421,"Y.O.U. Students Enjoy Astronomy Visit",01/22/2019,https://ciera.northwestern.edu/2019/01/22/y-o-u-students-enjoy-astronomy-visit/,,"CIERA Stories",Education|Outreach +3426,"IDEAS Visits Capitol Hill: Attends Future STEM Leaders Conference",05/20/2016,https://ciera.northwestern.edu/2016/05/20/ideas-visits-capitol-hill-attends-future-stem-leaders-conference/,,"CIERA Stories","Data Science & Computing|Education|Event|Outreach" +3428,"Enthusiasm for Mercury Transit Despite Cloudy Skies",05/19/2016,https://ciera.northwestern.edu/2016/05/19/enthusiasm-for-mercury-transit-despite-cloudy-skies/,,"CIERA Stories",Education|Event|Outreach +3442,"Northwestern Hosts Regional Conference for Women in Physics",01/21/2019,https://ciera.northwestern.edu/2019/01/21/northwestern-hosts-regional-conference-for-women-in-physics/,,"CIERA Stories",Event|Interdisciplinary +3452,"CIERA Demonstrates the Beauty of Art and Science at the First Annual STEM-CON",05/10/2016,https://ciera.northwestern.edu/2016/05/10/ciera-demonstrates-the-beauty-of-art-and-science-at-the-first-annual-stem-con/,,"CIERA Stories",Education|Event|Interdisciplinary +3458,"CIERA Researcher Brings The Galaxy to the Classroom",05/06/2016,https://ciera.northwestern.edu/2016/05/06/ciera-researcher-brings-the-galaxy-to-the-classroom/,,"CIERA Stories",Education|Event|Outreach +3460,"Major Prizes for LIGO Founders and 1,012 Contributors to Gravitational-Wave Discovery",05/01/2016,https://ciera.northwestern.edu/2016/05/01/major-prizes-for-ligo-founders-and-1012-contributors-to-gravitational-wave-discovery/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +3507,"CIERA Astronomers Use Machine Learning to Classify 1.5 Billion Astronomical Sources",02/07/2019,https://ciera.northwestern.edu/2019/02/07/ciera-astronomers-use-machine-learning-to-classify-1-5-billion-astronomical-sources/,"Life & Death of Stars","External Press","Data Science & Computing|Interdisciplinary|Science" +3529,"Ripples in Spacetime at Take Our Daughters & Sons to Work Day",04/30/2016,https://ciera.northwestern.edu/2016/04/30/ripples-in-spacetime-at-take-our-daughters-sons-to-work-day/,,"CIERA Stories",Education|Event|Outreach +3532,"CIERA Presentations at National Science Foundation Site Visit",04/29/2016,https://ciera.northwestern.edu/2016/04/29/ciera-presentations-at-national-science-foundation-site-visit/,,"CIERA Stories|Northwestern Press",Event +3534,"CIERA Contributes to Northwestern’s Computational Research Day",04/28/2016,https://ciera.northwestern.edu/2016/04/28/ciera-contributes-to-northwesterns-computational-research-day-2/,,"CIERA Stories|Northwestern Press","Data Science & Computing|Event|Interdisciplinary" +3537,"CIERA’s Carl Rodriguez Gives TEDx Talk",04/25/2016,https://ciera.northwestern.edu/2016/04/25/cieras-carl-rodriguez-gives-tedx-talk/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|Northwestern Press",Achievement|Education|Event +3539,"CIERA Postdoctoral Fellow Laura Fissel Wins Prestigious Jansky Fellowship",04/22/2016,https://ciera.northwestern.edu/2016/04/22/ciera-postdoctoral-fellow-laura-fissel-wins-prestigious-jansky-fellowship/,"Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +3542,"Roger Malina Discusses Hybrid Art-Sciences Practices at CIERA Spring Interdisciplinary Colloquium",04/03/2016,https://ciera.northwestern.edu/2016/04/03/roger-malina-discusses-hybrid-art-sciences-practices-at-ciera-spring-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3549,"CIERA’s Vicky Kalogera Named a ""Top Ten Northwestern Professor"" by College Magazine",03/31/2016,https://ciera.northwestern.edu/2016/03/31/cieras-vicky-kalogera-named-a-top-ten-northwestern-professor-by-college-magazine/,,"External Press",Achievement +3551,"CIERA’s Shane Larson Leads Gravitational Waves Discussion at Science Café",03/29/2016,https://ciera.northwestern.edu/2016/03/29/cieras-shane-larson-leads-gravitational-waves-discussion-at-science-cafe/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event +3554,"Kick-off of New Outreach Event Series: Astronomy on Tap Chicago",03/01/2016,https://ciera.northwestern.edu/2016/03/01/kick-off-of-new-outreach-event-series-astronomy-on-tap-chicago/,,"CIERA Stories",Event|Outreach +3556,"The Chicago Network’s Panel on Space Encourages Girls to Pursue Careers in Science & Technology",02/28/2016,https://ciera.northwestern.edu/2016/02/28/the-chicago-networks-panel-on-space-encourages-girls-to-pursue-careers-in-science-technology/,,"CIERA Stories",Event +3558,"""Chicago Tonight"" Features CIERA's Vicky Kalogera and Shane Larson Discussing Major Research Discovery",02/20/2016,https://ciera.northwestern.edu/2016/02/20/chicago-tonight-features-cieras-vicky-kalogera-and-shane-larson-discussing-major-research-discovery/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Outreach +3562,"CIERA Contributes to the Historic First Detection of Gravitational Waves",02/15/2016,https://ciera.northwestern.edu/2016/02/15/ciera-contributes-to-the-historic-first-detection-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Science +3563,"Largest Ever Event for Graduate Student Speaker Series",02/11/2016,https://ciera.northwestern.edu/2016/02/11/largest-ever-event-for-graduate-student-speaker-series/,,"CIERA Stories",Education|Event|Outreach +3604,"Olivier Guyon Looks to Characterize Habitable Exoplanets: CIERA Winter Interdisciplinary Colloquium",02/04/2016,https://ciera.northwestern.edu/2016/02/04/olivier-guyon-looks-to-characterize-habitable-exoplanets-ciera-winter-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3609,"CIERA REU Student Eryn Cangi Wins Chambliss Medal for Research Poster at AAS",01/30/2016,https://ciera.northwestern.edu/2016/01/30/ciera-reu-student-eryn-cangi-wins-chambliss-medal-for-research-poster-at-aas/,,"CIERA Stories",Achievement|Event +3612,"CIERA's Geller and Faucher-Giguère Contribute to New Study in ""Nature""",01/29/2016,https://ciera.northwestern.edu/2016/01/29/cieras-geller-and-faucher-giguere-contribute-to-new-study-in-nature/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +3614,"New Monthly Night at Dearborn Observatory with CIERA Astronomers",01/27/2016,https://ciera.northwestern.edu/2016/01/27/new-monthly-night-at-dearborn-observatory-with-ciera-astronomers/,,"CIERA Stories",Event +3617,"American Astronomical Society to Lead WorldWide Telescope",01/10/2016,https://ciera.northwestern.edu/2016/01/10/american-astronomical-society-to-lead-worldwide-telescope/,,"CIERA Stories|External Press",Education|Outreach|Science +3620,"CIERA Grad Student Brings the Stars to Her Hometown",01/05/2016,https://ciera.northwestern.edu/2016/01/05/ciera-grad-student-brings-the-stars-to-her-hometown/,,"CIERA Stories",Achievement|Education|Outreach +3622,"Integrated Data Science Certificate in Development at CIERA",01/01/2016,https://ciera.northwestern.edu/2016/01/01/integrated-data-science-certificate-in-development-at-ciera/,,"CIERA Stories","Achievement|Data Science & Computing|Education" +3624,"AAAS Fellow Jeremy Ward Visits CIERA",12/06/2015,https://ciera.northwestern.edu/2015/12/06/aaas-fellow-jeremy-ward-visits-ciera/,,"CIERA Stories",Event +3629,"CIERA’s Raffaella Margutti Named Sloan Research Fellow",02/19/2019,https://ciera.northwestern.edu/2019/02/19/cieras-raffaella-margutti-named-sloan-research-fellow/,,"External Press|Northwestern Press",Achievement +3634,"New York Times Discusses Importance of ‘Behind the Scenes’ Science",02/20/2019,https://ciera.northwestern.edu/2019/02/20/new-york-times-discusses-importance-of-behind-the-scenes-science/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Interdisciplinary|Science +3637,"Professors Novak & Sageman Named to 2015 Faculty Honor Roll",11/30/2015,https://ciera.northwestern.edu/2015/11/30/professors-novak-sageman-named-to-2015-faculty-honor-roll/,,"CIERA Stories",Achievement +3639,"CIERA's Shane Larson Participates in Gravitational Wave Google Hangout",11/25/2015,https://ciera.northwestern.edu/2015/11/25/cieras-shane-larson-participates-in-gravitational-wave-google-hangout/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event|Outreach +3642,"CIERA's Shane Larson Joins 2015-2016 WCAS Seminar Series for Staff",11/22/2015,https://ciera.northwestern.edu/2015/11/22/cieras-shane-larson-joins-2015-2016-wcas-seminar-series-for-staff/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Education|Event +3644,"CIERA Researchers Geller, Hwang and Rasio Win Award for ""Capturing the Beauty of Science"", in the 2015 Northwestern Scientific Images Contest",11/19/2015,https://ciera.northwestern.edu/2015/11/19/ciera-researchers-geller-hwang-and-rasio-win-award-for-capturing-the-beauty-of-science-in-the-2015-northwestern-scientific-images-contest/,,"Northwestern Press",Achievement|Interdisciplinary +3654,"Dennis Lehmkuhl Shares the History of Einstein's Discoveries at CIERA Fall Interdisciplinary Colloquium",11/13/2015,https://ciera.northwestern.edu/2015/11/13/dennis-lehmkuhl-shares-the-history-of-einsteins-discoveries-at-ciera-fall-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary +3659,"Stargazing with Local Dads and Daughters Outdoors Group",11/11/2015,https://ciera.northwestern.edu/2015/11/11/stargazing-with-local-dads-and-daughters-outdoors-group/,,"CIERA Stories",Education|Event|Outreach +3661,"CIERA's Michelle Paulsen and Katie Breivik Meet U.S. Congressman Bob Dold",11/10/2015,https://ciera.northwestern.edu/2015/11/10/cieras-michelle-paulsen-and-katie-breivik-meet-u-s-congressman-bob-dold/,,"CIERA Stories",Event +3663,"CIERA Seventh Annual Public Lecture: New Horizons Leader Alan Stern",11/03/2015,https://ciera.northwestern.edu/2015/11/03/ciera-seventh-annual-public-lecture-new-horizons-leader-alan-stern/,"Exoplanets & The Solar System","CIERA Stories",Education|Event|Outreach +3717,"CIERA’s Erin Cox Wins NRAO Dissertation Award",02/22/2019,https://ciera.northwestern.edu/2019/02/22/cieras-erin-cox-wins-nrao-dissertation-award/,"Exoplanets & The Solar System|Life & Death of Stars","External Press",Achievement +3724,"CIERA Professor Wen-Fai Fong Interviewed by Science News",02/25/2019,https://ciera.northwestern.edu/2019/02/25/ciera-professor-wen-fai-fong-interviewed-by-science-news/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3732,"CIERA Director Elected to LSSTC ExecBoard",11/01/2015,https://ciera.northwestern.edu/2015/11/01/ciera-director-elected-to-lsstc-execboard/,,"CIERA Stories",Achievement +3735,"CIERA Summer Research Student Continues to Communicate Work",10/31/2015,https://ciera.northwestern.edu/2015/10/31/ciera-summer-research-student-continues-to-communicate-work/,"Galaxies & Cosmology","CIERA Stories",Education|Event +3737,"Dearborn Observatory Featured in Open House Chicago 2015",10/25/2015,https://ciera.northwestern.edu/2015/10/25/dearborn-observatory-featured-in-open-house-chicago-2015/,,"External Press",Event +3739,"CIERA Director Awarded Prestigious APS 2016 Bethe Prize",10/20/2015,https://ciera.northwestern.edu/2015/10/20/ciera-director-awarded-prestigious-aps-2016-bethe-prize/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press|Northwestern Press",Achievement +3741,"CIERA’s Shane Larson Elected APS Fellow",10/15/2015,https://ciera.northwestern.edu/2015/10/15/cieras-shane-larson-elected-aps-fellow/,,"CIERA Stories",Achievement +3743,"2015 Midwest Relativity Meeting Hosted by CIERA",10/05/2015,https://ciera.northwestern.edu/2015/10/05/2015-midwest-relativity-meeting-hosted-by-ciera/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Education|Event +3746,"CIERA Total Lunar Eclipse Party Helped Hundreds to Experience, Understand Rare Event",09/30/2015,https://ciera.northwestern.edu/2015/09/30/ciera-total-lunar-eclipse-party-helped-hundreds-to-experience-understand-rare-event/,,"CIERA Stories",Education|Event|Outreach +3755,"CIERA Graduate Students Speak at Local High School’s Women in STEM Event",11/25/2015,https://ciera.northwestern.edu/2015/11/25/ciera-graduate-students-speak-at-local-high-schools-women-in-stem-event/,,"CIERA Stories",Education|Event|Outreach +3757,"CIERA Director Vicky Kalogera to Join National Committee on Astronomy and Astrophysics",11/22/2015,https://ciera.northwestern.edu/2015/11/22/ciera-director-vicky-kalogera-to-join-national-committee-on-astronomy-and-astrophysics/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +3758,"Boy Scouts and their Families visit Dearborn Observatory as part of NU Athletics STEM & Sports Day",09/13/2015,https://ciera.northwestern.edu/2015/09/13/boy-scouts-and-their-families-visit-dearborn-observatory-as-part-of-nu-athletics-stem-sports-day/,,"CIERA Stories",Education|Event|Outreach +3760,"CIERA Presentations at RSG Seven Minutes of Science: An Interdisciplinary Symposium",09/12/2015,https://ciera.northwestern.edu/2015/09/12/ciera-presentations-at-rsg-seven-minutes-of-science-an-interdisciplinary-symposium/,,"CIERA Stories",Education|Event +3784,"CIERA's 2015 Summer Student Researchers",08/31/2015,https://ciera.northwestern.edu/2015/08/31/cieras-2015-summer-student-researchers/,,"CIERA Stories",Education +3787,"CIERA Director Vicky Kalogera Speaks to Office for Research Staff",08/30/2015,https://ciera.northwestern.edu/2015/08/30/ciera-director-vicky-kalogera-speaks-to-office-for-research-staff/,,"CIERA Stories",Event +3791,"CIERA Study Predicts Detection of More Merging Black Holes Than Previously Thought",07/30/2015,https://ciera.northwestern.edu/2015/07/30/ciera-study-predicts-detection-of-more-merging-black-holes-than-previously-thought/,"Black Holes & Dead Stars","CIERA Stories|External Press|Northwestern Press",Science +3793,"Immediate Opening for Graduate Student: CIERA Keck Foundation Grant",07/27/2015,https://ciera.northwestern.edu/2015/07/27/immediate-opening-for-graduate-student-ciera-keck-foundation-grant/,"Exoplanets & The Solar System","CIERA Stories",Science +3795,"CIERA Undergraduate Researcher Accepted to Ph.D. Programs",07/22/2015,https://ciera.northwestern.edu/2015/07/22/ciera-undergraduate-researcher-accepted-to-ph-d-programs/,,"CIERA Stories",Achievement +3797,"CIERA Research Group Receives Time with Hubble Space Telescope",07/20/2015,https://ciera.northwestern.edu/2015/07/20/ciera-research-group-receives-time-with-hubble-space-telescope/,"Galaxies & Cosmology","CIERA Stories|External Press",Achievement|Science +3799,"Astronomy Club of the College of DuPage Visits CIERA",07/12/2015,https://ciera.northwestern.edu/2015/07/12/astronomy-club-of-the-college-of-dupage-visits-ciera/,,"CIERA Stories",Education|Event +3801,"W.M. Keck Foundation Grant to NU Team Led by CIERA's Hooman Mohseni and Melville P. Ulmer",07/04/2015,https://ciera.northwestern.edu/2015/07/04/w-m-keck-foundation-grant-to-nu-team-led-by-cieras-hooman-mohseni-and-melville-p-ulmer/,"Exoplanets & The Solar System","CIERA Stories|External Press",Achievement|Science +3803,"CIERA Shares with Local Children: Solar Observing and Careers in Astrophysics",06/30/2015,https://ciera.northwestern.edu/2015/06/30/ciera-shares-with-local-children-solar-observing-and-careers-in-astrophysics/,,"CIERA Stories",Education|Event|Outreach +3815,"""Astronomy Picture of the Day"" Features Results from SOFIA's HAWC+ Instrument, Developed by a Team including CIERA Astronomers",02/27/2019,https://ciera.northwestern.edu/2019/02/27/astronomy-picture-of-the-day-features-results-from-sofias-hawc-instrument-developed-by-a-team-including-ciera-astronomers/,,"External Press",Achievement +3817,"Local Podcast “Inside the Skev” Explores CIERA Research & Outreach Programs",03/10/2019,https://ciera.northwestern.edu/2019/03/10/local-podcast-inside-the-skev-explores-ciera-research-outreach-programs/,,"CIERA Stories",Education|Interdisciplinary|Outreach +3823,"IDEAS Fellows Contribute to New Seismology Citizen Science Project",03/13/2019,https://ciera.northwestern.edu/2019/03/13/ideas-fellows-contribute-to-new-seismology-citizen-science-project/,,"External Press|Northwestern Press","Data Science & Computing|Education|Interdisciplinary|Science" +3838,"Student-led Data Expeditions with ""Vault""",03/25/2019,https://ciera.northwestern.edu/2019/03/25/student-led-data-expeditions-with-vault/,,"CIERA Stories","Data Science & Computing|Education|Interdisciplinary|Outreach" +3843,"Eight New Postdoctoral Researchers Join CIERA",04/01/2019,https://ciera.northwestern.edu/2019/04/01/eight-new-postdoctoral-researchers-join-ciera/,,"CIERA Stories",Achievement +3856,"CIERA Graduate Student Michael Zevin Research Featured in AAS Nova",03/28/2019,https://ciera.northwestern.edu/2019/03/28/ciera-graduate-student-michael-zevin-research-featured-in-aas-nova/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Achievement +3859,"You’re Invited! Humans Needed to Help Find Star Clusters",03/29/2019,https://ciera.northwestern.edu/2019/03/29/youre-invited-humans-needed-to-help-find-star-clusters/,"Stellar Dynamics & Stellar Populations","CIERA Stories|External Press","Data Science & Computing|Interdisciplinary|Outreach|Science" +3868,"CIERA's Researchers Featured in Gizmodo Ahead of LIGO and Virgo's Resumed Search for Gravitational Waves",04/01/2019,https://ciera.northwestern.edu/2019/04/01/cieras-researchers-featured-in-gizmodo-ahead-of-ligo-and-virgos-resumed-search-for-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +3871,"Vicky Kalogera Hosts Nobel Laureate Rainer Weiss for 2019 Heilborn Lecture Series",04/02/2019,https://ciera.northwestern.edu/2019/04/02/vicky-kalogera-hosts-nobel-laureate-rainer-weiss-for-2019-heilborn-lecture-series/,,"Northwestern Press",Event|Outreach +3872,"Professor Margutti’s Paper Among Top Ten in 2018",04/03/2019,https://ciera.northwestern.edu/2019/04/03/professor-marguttis-paper-among-top-ten-in-2018/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +3881,"Illinois Congressman Visits CIERA",06/27/2015,https://ciera.northwestern.edu/2015/06/27/illinois-congressman-visits-ciera/,,"CIERA Stories",Outreach +3883,"CIERA Helps the Adler Planetarium Celebrate the Summer of Science!",06/15/2015,https://ciera.northwestern.edu/2015/06/15/ciera-helps-the-adler-planetarium-celebrate-the-summer-of-science/,,"CIERA Stories",Education|Event|Outreach +3885,"NASA Fellowship Awarded to CIERA Graduate Student Sam Hadden",06/10/2015,https://ciera.northwestern.edu/2015/06/10/nasa-fellowship-awarded-to-ciera-graduate-student-sam-hadden/,"Exoplanets & The Solar System","CIERA Stories",Achievement +3887,"CIERA’s Doug Roberts Creates First Video Abstract for an Astrophysical Journal Letters Article",06/05/2015,https://ciera.northwestern.edu/2015/06/05/cieras-doug-roberts-creates-first-video-abstract-for-an-astrophysical-journal-letters-article/,"Galaxies & Cosmology","CIERA Stories",Achievement|Science +3895,"CIERA’s Melville P. Ulmer Receives Funding from NASA Innovative Advanced Concepts (NIAC)",06/01/2015,https://ciera.northwestern.edu/2015/06/01/cieras-melville-p-ulmer-receives-funding-from-nasa-innovative-advanced-concepts-niac/,,"CIERA Stories",Achievement|Interdisciplinary|Science +3897,,05/31/2015,https://ciera.northwestern.edu/2015/05/31/3897/,,"CIERA Stories",Achievement|Education +3899,"Neil deGrasse Tyson Ignites CIERA Annual Public Lecture",05/15/2015,https://ciera.northwestern.edu/2015/05/15/neil-degrasse-tyson-ignites-ciera-annual-public-lecture/,,"CIERA Stories",Education|Event|Outreach +3921,"Professor Meyer Highlights Hubble's Contributions to Astronomy Education in CIERA Spring Interdisciplinary Colloquium",04/30/2015,https://ciera.northwestern.edu/2015/04/30/professor-meyer-highlights-hubbles-contributions-to-astronomy-education-in-ciera-spring-interdisciplinary-colloquium/,,"CIERA Stories",Education|Event +3931,"CIERA Fellow Geller Wins First Prize in Data Visualization Challenge",04/29/2015,https://ciera.northwestern.edu/2015/04/29/ciera-fellow-geller-wins-first-prize-in-data-visualization-challenge/,"Life & Death of Stars","CIERA Stories",Achievement +3934,"Gravitational Wave Detectors Spot Two Potential Black Hole Collisions in a Week",04/15/2019,https://ciera.northwestern.edu/2019/04/15/gravitational-wave-detectors-spot-two-potential-black-hole-collisions-in-a-week/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +3939,"CIERA Faculty Comment on World’s First Image of a Black Hole",04/16/2019,https://ciera.northwestern.edu/2019/04/16/ciera-faculty-comment-on-worlds-first-image-of-a-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +3941,"CIERA Co-Sponsors Computational Research Day Poster Session",04/25/2015,https://ciera.northwestern.edu/2015/04/25/ciera-co-sponsors-computational-research-day-poster-session/,,"CIERA Stories|Northwestern Press",Event|Interdisciplinary|Science +3943,"Professor Yusef-Zadeh and Colleagues See Evidence of Star Formation Near Galaxy's Supermassive Black Hole",04/24/2015,https://ciera.northwestern.edu/2015/04/24/professor-yusef-zadeh-and-colleagues-see-evidence-of-star-formation-near-galaxys-supermassive-black-hole/,"Life & Death of Stars","CIERA Stories",Achievement|Science +3945,"Two NSF Graduate Fellowships Awarded to NU Astronomy Students",04/18/2015,https://ciera.northwestern.edu/2015/04/18/two-nsf-graduate-fellowships-awarded-to-nu-astronomy-students/,"Exoplanets & The Solar System","CIERA Stories",Achievement +3947,"CIERA-based Team Awarded 5-year NSF ""Research Traineeship"" Grant",04/10/2015,https://ciera.northwestern.edu/2015/04/10/ciera-based-team-awarded-5-year-nsf-research-traineeship-grant/,,"CIERA Stories|External Press","Achievement|Data Science & Computing|Interdisciplinary" +3949,"CIERA’s Aaron Geller Awarded LSSTC Enabling Science Grant to Fund Undergraduate Research",04/18/2019,https://ciera.northwestern.edu/2019/04/18/cieras-aaron-geller-awarded-lsstc-enabling-science-grant-to-fund-undergraduate-research/,,"CIERA Stories",Achievement|Education +3951,"CIERA REU Students Present at 233rd Meeting of the AAS",01/31/2019,https://ciera.northwestern.edu/2019/01/31/ciera-reu-students-present-at-233rd-meeting-of-the-aas/,,"CIERA Stories",Education|Event +3964,"CIERA’s Paul Williams on Studying Star Formation in Antarctica",04/19/2019,https://ciera.northwestern.edu/2019/04/19/cieras-paul-williams-on-studying-star-formation-in-antarctica/,"Galaxies & Cosmology","CIERA Stories",Science +3970,"Middle School Girls on a Mission to Space!",03/31/2015,https://ciera.northwestern.edu/2015/03/31/middle-school-girls-on-a-mission-to-space/,,"CIERA Stories",Education|Event|Outreach +3972,"Dave Meyer to speak at ""A Day With Northwestern 2015""",03/29/2015,https://ciera.northwestern.edu/2015/03/29/dave-meyer-to-speak-at-a-day-with-northwestern-2015/,,"CIERA Stories|Northwestern Press",Achievement|Event|Outreach +3974,"CIERA to Welcome Four New Postdocs in Fall 2015",03/19/2015,https://ciera.northwestern.edu/2015/03/19/ciera-to-welcome-four-new-postdocs-in-fall-2015/,,"CIERA Stories",Achievement +3976,"Summer Undergraduate Student Success Stories: CIERA Alumni",03/01/2015,https://ciera.northwestern.edu/2015/03/01/summer-undergraduate-student-success-stories-ciera-alumni/,,"CIERA Stories",Education +3978,"CIERA Professors Lithwick and Motter Recognized in NU Research Annual Report",02/28/2015,https://ciera.northwestern.edu/2015/02/28/ciera-professors-lithwick-and-motter-recognized-in-nu-research-annual-report/,"Exoplanets & The Solar System","Northwestern Press","Achievement|Data Science & Computing|Interdisciplinary|Science" +3980,"From Chemistry Labs to Star Forming Regions in the Galaxy: Astrochemistry at the CIERA Winter Interdisciplinary Colloquium",02/26/2015,https://ciera.northwestern.edu/2015/02/26/from-chemistry-labs-to-star-forming-regions-in-the-galaxy-astrochemistry-at-the-ciera-winter-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +3991,"LSST Project Accepts New Mirror Surfaces",02/27/2015,https://ciera.northwestern.edu/2015/02/27/lsst-project-accepts-new-mirror-surfaces/,,"CIERA Stories|External Press",Science +4006,"Don Geci, CIERA High-School Summer Student, Accepted to Princeton",02/20/2015,https://ciera.northwestern.edu/2015/02/20/don-geci-ciera-high-school-summer-student-accepted-to-princeton/,"Exoplanets & The Solar System","CIERA Stories",Achievement +4008,"CIERA Fellow Chatterjee helps show `Vulcan’ planets follow predictions of new theory",02/17/2015,https://ciera.northwestern.edu/2015/02/17/ciera-fellow-chatterjee-helps-show-vulcan-planets-follow-predictions-of-new-theory/,"Exoplanets & The Solar System","CIERA Stories|External Press|Northwestern Press",Science +4010,"LIGO Generations: New Documentary on Gravitational Wave Astronomy",02/10/2015,https://ciera.northwestern.edu/2015/02/10/ligo-generations-new-documentary-on-gravitational-wave-astronomy/,"Gravitational Waves & Multi-Messenger Astronomy",,Education|Event +4013,"CIERA Graduate Student Meagan Morscher Wins Martin and Beate Block Award",02/05/2015,https://ciera.northwestern.edu/2015/02/05/ciera-graduate-student-meagan-morscher-wins-martin-and-beate-block-award/,"Black Holes & Dead Stars","CIERA Stories",Achievement|Event +4016,"Join Einstein Evenings throughout 2015",01/25/2015,https://ciera.northwestern.edu/2015/01/25/join-einstein-evenings-throughout-2015/,,"CIERA Stories",Education|Event|Outreach +4018,"Large Synoptic Survey Telescope Project Celebrates Successful Completion of its Unique Mirror",01/11/2015,https://ciera.northwestern.edu/2015/01/11/large-synoptic-survey-telescope-project-celebrates-successful-completion-of-its-unique-mirror/,,"CIERA Stories|External Press",Achievement|Event|Science +4028,"Annual Jamboree Summarizes CIERA's Diverse Research with Postdoc & Graduate Student Talks",12/15/2014,https://ciera.northwestern.edu/2014/12/15/annual-jamboree-summarizes-cieras-diverse-research-with-postdoc-graduate-student-talks/,"Galaxies & Cosmology","CIERA Stories",Event +4036,"CIERA Astronomers Provide Strong Support for The Adler Planetarium Girls do Hack Event Saturday, November 15th",11/16/2014,https://ciera.northwestern.edu/2014/11/16/ciera-astronomers-provide-strong-support-for-the-adler-planetarium-girls-do-hack-event-saturday-november-15th/,,"CIERA Stories",Education|Event|Interdisciplinary|Outreach +4040,"A New Infrared Camera for Exoplanet Imaging",04/29/2019,https://ciera.northwestern.edu/2019/04/29/a-new-infrared-camera-for-exoplanet-imaging/,"Exoplanets & The Solar System","CIERA Stories",Science +4045,"CIERA Staff, Faculty, and Students Speak at 6th Annual Statewide OSEP STEM Summit",11/06/2014,https://ciera.northwestern.edu/2014/11/06/ciera-staff-faculty-and-students-speak-at-6th-annual-statewide-osep-stem-summit/,,"CIERA Stories|Northwestern Press",Achievement|Outreach|Science +4048,"`Kits and Cats' Celebrates Community Connections; ""Reach for the Stars"" Plays Key Role",11/02/2014,https://ciera.northwestern.edu/2014/11/02/kits-and-cats-celebrates-community-connections-reach-for-the-stars-plays-key-role/,,"CIERA Stories|Northwestern Press",Achievement|Education|Event|Outreach +4052,"CIERA Fall Interdisciplinary Talk Highlights Computation in Plasma Astrophysics",10/31/2014,https://ciera.northwestern.edu/2014/10/31/ciera-fall-interdisciplinary-talk-highlights-computation-in-plasma-astrophysics/,"Black Holes & Dead Stars","CIERA Stories",Event|Interdisciplinary|Science +4058,"Attendees Cheer at Partial Solar Eclipse Event on October 23rd, 2014",10/27/2014,https://ciera.northwestern.edu/2014/10/27/attendees-cheer-at-partial-solar-eclipse-event-on-october-23rd-2014/,,"CIERA Stories|External Press|Northwestern Press",Education|Event|Outreach|Science +4069,"Prof. Dave Meyer Delivers New Video Course on Space Astronomy",10/20/2014,https://ciera.northwestern.edu/2014/10/20/prof-dave-meyer-delivers-new-video-course-on-space-astronomy/,,"CIERA Stories|External Press",Achievement|Education|Event +4071,"CIERA Professor Fred Rasio Appointed to KITP Advisory Board",10/03/2014,https://ciera.northwestern.edu/2014/10/03/ciera-professor-fred-rasio-appointed-to-kitp-advisory-board/,,"CIERA Stories",Achievement|Interdisciplinary +4073,"CIERA Postdoctoral Fellows Geller & Hicks Win Awards for “Capturing the Beauty of Science”",09/30/2014,https://ciera.northwestern.edu/2014/09/30/ciera-postdoctoral-fellows-geller-hicks-win-awards-for-capturing-the-beauty-of-science/,"Galaxies & Cosmology|Life & Death of Stars","CIERA Stories|Northwestern Press",Achievement|Interdisciplinary|Science +4075,"CIERA Helps Host Boy Scouts and Families for ""NU STEM & Sports"" Event",09/30/2014,https://ciera.northwestern.edu/2014/09/30/ciera-helps-host-boy-scouts-and-families-for-nu-stem-sports-event/,,"CIERA Stories|Northwestern Press",Education|Event|Outreach +4081,"CIERA Postdoc Francesca Valsecchi and Colleagues Link Hot Super-Earths to Hot Jupiters",09/25/2014,https://ciera.northwestern.edu/2014/09/25/ciera-postdoc-francesca-valsecchi-and-colleagues-link-hot-super-earths-to-hot-jupiters/,"Exoplanets & The Solar System","CIERA Stories",Achievement|Science +4082,"Professor Meyer Named to 2014 Faculty Honor Roll",09/09/2014,https://ciera.northwestern.edu/2014/09/09/professor-meyer-named-to-2014-faculty-honor-roll/,,"CIERA Stories",Achievement +4085,"New Issue of “LIGO Magazine” Celebrates Major Instrument Milestone",08/31/2014,https://ciera.northwestern.edu/2014/08/31/new-issue-of-ligo-magazine-celebrates-major-instrument-milestone/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +4087,"Experts on X-Ray Optics Meet at Northwestern, Discuss Next-Generation Space Telescopes",08/27/2014,https://ciera.northwestern.edu/2014/08/27/experts-on-x-ray-optics-meet-at-northwestern-discuss-next-generation-space-telescopes/,,"CIERA Stories",Event|Science +4089,"National Science Foundation Agrees to Fund LSST Project",08/22/2014,https://ciera.northwestern.edu/2014/08/22/national-science-foundation-agrees-to-fund-lsst-project/,,"CIERA Stories|External Press",Achievement|Science +4091,"CIERA's 2014 Summer Student Researchers",08/17/2014,https://ciera.northwestern.edu/2014/08/17/cieras-2014-summer-student-researchers/,,"CIERA Stories",Education|Outreach +4093,"CIERA Hosts Galaxy Formation Workshop",08/01/2014,https://ciera.northwestern.edu/2014/08/01/ciera-hosts-galaxy-formation-workshop/,"Galaxies & Cosmology","CIERA Stories",Education|Event|Science +4096,"LIGO on Lookout for 8 Sources of Gravitational Waves",05/06/2019,https://ciera.northwestern.edu/2019/05/06/ligo-on-lookout-for-8-sources-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4100,"First Gravitational Waves Detection from Neutron Star Colliding with a Black Hole",05/02/2019,https://ciera.northwestern.edu/2019/05/02/first-gravitational-waves-detection-from-neutron-star-colliding-with-a-black-hole/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4125,"Graduate Student Inspires Students Through Art",07/29/2014,https://ciera.northwestern.edu/2014/07/29/graduate-student-inspires-students-through-art/,,,Education|Event|Outreach +4127,"The Science that Shared Buzz Aldrin’s Space Selfie",07/27/2014,https://ciera.northwestern.edu/2014/07/27/the-science-that-shared-buzz-aldrins-space-selfie/,,"External Press",Science +4129,"CIERA Director Elected Trustee of Aspen Center for Physics",07/15/2014,https://ciera.northwestern.edu/2014/07/15/ciera-director-elected-trustee-of-aspen-center-for-physics/,,"CIERA Stories",Achievement +4130,"CIERA’s Shane Larson Called In As Expert On “Cityhenge”",07/10/2014,https://ciera.northwestern.edu/2014/07/10/cieras-shane-larson-called-in-as-expert-on-cityhenge/,,"CIERA Stories|External Press",Achievement|Event|Outreach|Science +4132,"Six CIERA Students Awarded Illinois Space Grant Consortium Scholarships to Advance their Research",07/06/2014,https://ciera.northwestern.edu/2014/07/06/six-ciera-students-awarded-illinois-space-grant-consortium-scholarships-to-advance-their-research/,,"CIERA Stories",Achievement|Education|Interdisciplinary +4133,"CIERA Postdoc Explores Black Holes in BBC Magazine Feature",07/01/2014,https://ciera.northwestern.edu/2014/07/01/ciera-postdoc-explores-black-holes-in-bbc-magazine-feature/,"Black Holes & Dead Stars","CIERA Stories|External Press",Achievement|Science +4141,"Lakota Stellar STEM Weekend",05/28/2019,https://ciera.northwestern.edu/2019/05/28/lakota-stellar-stem-weekend/,,"CIERA Stories",Education|Event|Interdisciplinary|Outreach +4150,"CIERA Graduate Student Carl Rodriguez Produces Astronomy Film for Jackson Hole Science Media Film Festival",06/30/2014,https://ciera.northwestern.edu/2014/06/30/ciera-graduate-student-carl-rodriguez-produces-astronomy-film-for-jackson-hole-science-media-film-festival/,"Black Holes & Dead Stars","CIERA Stories|External Press",Achievement|Interdisciplinary +4151,"Paper Co-Authored by Ben Farr and Former CIERA Members Reviewed on Astrobites",06/15/2014,https://ciera.northwestern.edu/2014/06/15/paper-co-authored-by-ben-farr-and-former-ciera-members-reviewed-on-astrobites/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Science +4154,"Nine Students Awarded Funding from Weinberg College and Illinois Space Grant",06/01/2014,https://ciera.northwestern.edu/2014/06/01/nine-students-awarded-funding-from-weinberg-college-and-illinois-space-grant/,,"CIERA Stories",Achievement|Education|Outreach +4155,"CIERA Graduate Students Morscher and Schwartz Meet with Over 100 2nd Grade Students",05/31/2014,https://ciera.northwestern.edu/2014/05/31/ciera-graduate-students-morscher-and-schwartz-meet-with-over-100-2nd-grade-students/,,"CIERA Stories",Education|Event|Outreach +4160,"CIERA Postdoctoral Fellow Daryl Haggard Participates in a Role Model Panel at ""Futures Unlimited"" Event",05/29/2014,https://ciera.northwestern.edu/2014/05/29/ciera-postdoctoral-fellow-daryl-haggard-participates-in-a-role-model-panel-at-futures-unlimited-event/,,"CIERA Stories",Achievement|Event|Outreach +4164,"Lindsey Byrne Awarded DOE Graduate Fellowship",06/04/2019,https://ciera.northwestern.edu/2019/06/04/lindsey-byrne-awarded-doe-graduate-fellowship/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4167,"Prof. Claude-André Faucher-Giguère Named 2019 Scialog Fellow",06/04/2019,https://ciera.northwestern.edu/2019/06/04/prof-claude-andre-faucher-giguere-named-2019-scialog-fellow/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","External Press",Achievement +4170,"Database Celebrates the Presence of African American Women in Physics",06/04/2019,https://ciera.northwestern.edu/2019/06/04/database-celebrates-the-presence-of-african-american-women-in-physics/,,"External Press",Achievement|Interdisciplinary +4172,"What Next for Gravitational Wave Detection?",06/04/2019,https://ciera.northwestern.edu/2019/06/04/what-next-for-gravitational-wave-detection/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4174,"Stefan Danilishin Discusses Enhancing Future Gravitational Wave Detectors at CIERA Interdisciplinary Colloquium",03/15/2019,https://ciera.northwestern.edu/2019/03/15/stefan-danilishin-discusses-enhancing-future-gravitational-wave-detectors-at-ciera-interdisciplinary-colloquium/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary +4177,"Sean Raymond on Solar System Formation at CIERA Interdisciplinary Colloquium",04/01/2019,https://ciera.northwestern.edu/2019/04/01/sean-raymond-on-solar-system-formation-at-ciera-interdisciplinary-colloquium/,,"CIERA Stories",Event|Interdisciplinary +4195,"Most-detailed Simulations of Black Hole Solve Longstanding Mystery",06/06/2019,https://ciera.northwestern.edu/2019/06/06/most-detailed-simulations-of-black-hole-solve-longstanding-mystery/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +4200,"Giles Novak Appointed as the New Faculty Director of the Tech Instrument Shop",05/27/2014,https://ciera.northwestern.edu/2014/05/27/giles-novak-appointed-as-the-new-faculty-director-of-the-tech-instrument-shop/,,"CIERA Stories",Achievement|Interdisciplinary +4202,"CIERA Postdoctoral Fellow Daryl Haggard Featured in Physics Central Podcast",05/25/2014,https://ciera.northwestern.edu/2014/05/25/ciera-postdoctoral-fellow-daryl-haggard-featured-in-physics-central-podcast/,"Black Holes & Dead Stars","CIERA Stories|External Press",Education|Event|Science +4204,"CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase",06/03/2014,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase/,,"CIERA Stories|External Press",Achievement|Education|Event|Interdisciplinary|Outreach +4209,"Erik Curiel on Inconsistent Definitions of a Black Hole",05/09/2019,https://ciera.northwestern.edu/2019/05/09/erik-curiel-on-inconsistent-definitions-of-a-black-hole/,,"CIERA Stories",Event|Interdisciplinary +4225,"""Astronomers uncover first polarized radio signals from gamma-ray burst""",06/19/2019,https://ciera.northwestern.edu/2019/06/19/astronomers-uncover-first-polarized-radio-signals-from-gamma-ray-burst/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4234,"Fred Rasio Receives 2019 Brouwer Award",06/20/2019,https://ciera.northwestern.edu/2019/06/20/fred-rasio-receives-2019-brouwer-award/,,"Northwestern Press",Achievement +4239,"Scientists Gather to Plan Flight of Balloon-borne Telescope",06/14/2019,https://ciera.northwestern.edu/2019/06/14/scientists-gather-to-plan-flight-of-balloon-borne-telescope/,,"CIERA Stories",Event|Science +4242,"Monica Gallegos Garcia Wins Ford Foundation Fellowship",06/21/2019,https://ciera.northwestern.edu/2019/06/21/monica-gallegos-garcia-wins-ford-foundation-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +4244,"The Challenges and Rewards of Studying Radio Pulsars: a CIERA Interdisciplinary Colloquium by Scott Ransom",05/13/2019,https://ciera.northwestern.edu/2019/05/13/the-challenges-and-rewards-of-studying-radio-pulsars-a-ciera-interdisciplinary-colloquium-by-scott-ransom/,,"CIERA Stories",Event|Interdisciplinary +4247,"The Importance of Out-of-School STEM Learning: a CIERA Interdisciplinary Colloquium by Dennis Schatz",05/29/2019,https://ciera.northwestern.edu/2019/05/29/the-importance-of-out-of-school-stem-learning-a-ciera-interdisciplinary-colloquium-by-dennis-schatz/,,"CIERA Stories",Event|Interdisciplinary +4254,"High School Researcher Takes Gold at State Science Fair",06/21/2019,https://ciera.northwestern.edu/2019/06/21/high-school-researcher-takes-gold-at-state-science-fair/,,"CIERA Stories",Achievement|Education +4280,"Aprajita Hajela Wins NASA Future Investigator Award",07/10/2019,https://ciera.northwestern.edu/2019/07/10/aprajita-hajela-wins-nasa-future-investigator-award/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +4283,"Northwestern Leads Effort to Detect New Types of Cosmic Events",07/17/2019,https://ciera.northwestern.edu/2019/07/17/northwestern-leads-effort-to-detect-new-types-of-cosmic-events/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4291,"20 Years of Chandra X-ray Observatory",07/25/2019,https://ciera.northwestern.edu/2019/07/25/20-years-of-chandra-x-ray-observatory/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press",Science +4328,"SAGUARO: Using Arizona Telescopes to Observe the Most Dramatic Collisions in Space",08/15/2019,https://ciera.northwestern.edu/2019/08/15/saguaro-using-arizona-telescopes-to-observe-the-most-dramatic-collisions-in-space/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +4336,"""Astronomers probably just saw a black hole swallow a dead star""",08/19/2019,https://ciera.northwestern.edu/2019/08/19/astronomers-probably-just-saw-a-black-hole-swallow-a-dead-star/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4354,"CIERA Celebrates Apollo 11",07/26/2019,https://ciera.northwestern.edu/2019/07/26/ciera-celebrates-apollo-11/,,"CIERA Stories",Event|Outreach +4357,"Grad Student Zach Hafen Turns Summer Camp Students into Gas Molecules",07/18/2019,https://ciera.northwestern.edu/2019/07/18/grad-student-zach-hafen-turns-summer-camp-students-into-gas-molecules/,,"CIERA Stories",Education|Event|Outreach +4359,"Observational Astronomers Gather for ‘Hot-wiring the Transient Universe VI’",08/23/2019,https://ciera.northwestern.edu/2019/08/23/observational-astronomers-gather-for-hot-wiring-the-transient-universe-vi/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +4368,"Professor Raffaella Margutti Named CIFAR Azrieli Global Scholar",09/05/2019,https://ciera.northwestern.edu/2019/09/05/professor-raffaella-margutti-named-cifar-azrieli-global-scholar/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +4373,"""Remember that meteor that lit up Chicago’s night sky two years ago? Scientists are searching for it at the bottom of Lake Michigan.""",08/28/2019,https://ciera.northwestern.edu/2019/08/28/remember-that-meteor-that-lit-up-chicagos-night-sky-two-years-ago-scientists-are-searching-for-it-at-the-bottom-of-lake-michigan/,,"External Press",Outreach|Science +4387,"""Afterglow sheds light on the nature, origin of neutron star collisions""",09/09/2019,https://ciera.northwestern.edu/2019/09/09/afterglow-sheds-light-on-the-nature-origin-of-neutron-star-collisions/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4406,"Announcing CIERA’s 2019 Summer Undergraduate Researchers",06/01/2019,https://ciera.northwestern.edu/2019/06/01/announcing-cieras-2019-summer-undergraduate-researchers/,,"CIERA Stories",Education +4411,"""Giant balloon-like structures discovered at center of Milky Way""",09/12/2019,https://ciera.northwestern.edu/2019/09/12/giant-balloon-like-structures-discovered-at-center-of-milky-way/,"Black Holes & Dead Stars|Galaxies & Cosmology","External Press|Northwestern Press",Science +4435,"Students in 2019 “High School Summer Research Experience in Astronomy” Present Their Research at Annual Poster Session",08/02/2019,https://ciera.northwestern.edu/2019/08/02/students-in-2019-high-school-summer-research-experience-in-astronomy-present-their-research-at-annual-poster-session/,,"CIERA Stories",Education|Event|Outreach +4458,"CIERA Research Students and Judges Featured at Northwestern University High School Project Showcase",06/03/2014,https://ciera.northwestern.edu/2014/06/03/ciera-research-students-and-judges-featured-at-northwestern-university-high-school-project-showcase-2/,,"CIERA Stories",Education|Event|Outreach +4460,"Josh Bloom Presents CIERA Spring Interdisciplinary Colloquium on Machine Learning in Astronomy",05/08/2014,https://ciera.northwestern.edu/2014/05/08/josh-bloom-presents-ciera-spring-interdisciplinary-colloquium-on-machine-learning-in-astronomy/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +4466,"Ben Farr Successfully Defends Thesis",05/05/2014,https://ciera.northwestern.edu/2014/05/05/ben-farr-successfully-defends-thesis/,"Gravitational Waves & Multi-Messenger Astronomy",,Achievement|Science +4468,"CIERA Director Vicky Kalogera Featured in Weinberg Magazine Article Encouraging Women in STEM Fields",05/04/2014,https://ciera.northwestern.edu/2014/05/04/ciera-director-vicky-kalogera-featured-in-weinberg-magazine-article-encouraging-women-in-stem-fields/,,"CIERA Stories|Northwestern Press",Achievement|Outreach +4469,"Postdoctoral Fellow Haggard talks with Representatives on Capitol Hill as part of HEAD Executive Committee",05/02/2014,https://ciera.northwestern.edu/2014/05/02/postdoctoral-fellow-haggard-talks-with-representatives-on-capitol-hill-as-part-of-head-executive-committee/,,"CIERA Stories",Achievement|Outreach +4471,"Undergraduate Student Scotty Coughlin Awarded Fulbright Scholarship",05/01/2014,https://ciera.northwestern.edu/2014/05/01/undergraduate-student-scotty-coughlin-awarded-fulbright-scholarship/,,"CIERA Stories",Achievement +4472,"CIERA Sponsors Poster Session at Northwestern's Computational Research Day",04/30/2014,https://ciera.northwestern.edu/2014/04/30/ciera-sponsors-poster-session-at-northwesterns-computational-research-day/,,"CIERA Stories",Event|Interdisciplinary +4474,"CIERA Mentored High-School Student wins First Place in Space Science at the Northeastern Science and Engineering Fair",04/27/2014,https://ciera.northwestern.edu/2014/04/27/ciera-mentored-high-school-student-wins-first-place-in-space-science-at-the-northeastern-science-and-engineering-fair/,"Black Holes & Dead Stars","CIERA Stories",Achievement|Event +4476,"""LIGO -- A Passion for Understanding"" Documentary Released April 15th",04/25/2014,https://ciera.northwestern.edu/2014/04/25/ligo-a-passion-for-understanding-documentary-released-april-15th/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Uncategorized +4480,"Total Lunar Eclipse April 15th",04/20/2014,https://ciera.northwestern.edu/2014/04/20/__trashed-3/,,"CIERA Stories",Event|Outreach +4493,"IDEAS Trainees Attend the Grace Hopper Celebration 2019",10/10/2019,https://ciera.northwestern.edu/2019/10/10/ideas-trainees-attend-the-grace-hopper-celebration-2019/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +4531,"""A star has been flickering for years – and researchers think they've figured out why""",10/31/2019,https://ciera.northwestern.edu/2019/10/31/a-star-has-been-flickering-for-years-and-researchers-think-theyve-figured-out-why/,"Life & Death of Stars","External Press",Science +4534,"CIERA Graduate Student Zachary Hafen Featured by Northwestern TGS",11/01/2019,https://ciera.northwestern.edu/2019/11/01/ciera-graduate-student-zachary-hafen-featured-by-northwestern-tgs/,,"Northwestern Press",Achievement +4574,"""‘Are we alone?’ Study refines which exoplanets are potentially habitable""",11/12/2019,https://ciera.northwestern.edu/2019/11/12/are-we-alone-study-refines-which-exoplanets-are-potentially-habitable/,"Exoplanets & The Solar System","External Press|Northwestern Press",Science +4577,"Reach for the Stars Teacher Mark Vondracek Wins Physics Teacher’s Award",04/15/2019,https://ciera.northwestern.edu/2019/04/15/reach-for-the-stars-teacher-mark-vondracek-wins-physics-teachers-award/,,"CIERA Stories",Achievement|Education +4579,"IDEAS & CIERA Host NSF Research Traineeship National Meeting",09/30/2019,https://ciera.northwestern.edu/2019/09/30/ideas-ciera-host-nsf-research-traineeship-national-meeting/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +4591,"CIERA Alumna Laura Fissel Begins Faculty Appointment at Queen’s University",09/01/2019,https://ciera.northwestern.edu/2019/09/01/ciera-alumna-laura-fissel-begins-faculty-appointment-at-queens-university/,,"CIERA Stories",Achievement +4592,"STEM Panel Discussion Held at Lincoln Park High School",10/08/2019,https://ciera.northwestern.edu/2019/10/08/stem-panel-discussion-held-at-lincoln-park-high-school/,,"CIERA Stories",Education|Event|Outreach +4594,"Dearborn Observatory on View at Open House Chicago 2019",10/21/2019,https://ciera.northwestern.edu/2019/10/21/dearborn-observatory-on-view-at-open-house-chicago-2019/,,"CIERA Stories",Event|Outreach +4608,"Priya Natarajan Presents 11th Annual CIERA Public Lecture",10/25/2019,https://ciera.northwestern.edu/2019/10/25/priya-natarajan-presents-11th-annual-ciera-public-lecture/,"Galaxies & Cosmology","CIERA Stories",Event|Outreach +4619,"CIERA Fifth Annual Public Lecture: Prof. Maria Zuber Introduces the ""New Moon""",04/04/2014,https://ciera.northwestern.edu/2014/04/04/ciera-fifth-annual-public-lecture-prof-maria-zuber-introduces-the-new-moon/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +4636,"CIERA’s Vicky Kalogera and Farhad Yusef-Zadeh Named AAAS Fellows",11/26/2019,https://ciera.northwestern.edu/2019/11/26/five-professors-named-aaas-fellows/,,"Northwestern Press",Achievement +4641,"Rate of Neutron Star Binary Mergers From Star Clusters Much Lower than Previously Thought",12/02/2019,https://ciera.northwestern.edu/2019/12/02/rate-of-neutron-star-binary-mergers-much-lower-than-previously-thought/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +4650,"An experiment that solved a 100-year-old mystery posed by Einstein just got up to 50% more powerful by squeezing light",12/09/2019,https://ciera.northwestern.edu/2019/12/09/an-experiment-that-solved-a-100-year-old-mystery-posed-by-einstein-just-got-up-to-50-more-powerful-by-squeezing-light/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4656,"First Discoveries by the Young Supernova Experiment",12/08/2019,https://ciera.northwestern.edu/2019/12/08/first-discoveries-by-the-young-supernova-experiment/,"Life & Death of Stars","External Press",Science +4658,"Faucher-Giguère Named Highly Cited Researcher",12/02/2019,https://ciera.northwestern.edu/2019/12/02/faucher-giguere-named-highly-cited-researcher/,,"Northwestern Press",Achievement +4659,"CIERA Observer's Image Gets ""Starlinked""",11/18/2019,https://ciera.northwestern.edu/2019/11/18/ciera-observers-image-gets-starlinked/,"Galaxies & Cosmology","CIERA Stories|External Press",Science +4662,"Supercomputer Award Granted to CIERA’s Sasha Tchekhovskoy",11/01/2019,https://ciera.northwestern.edu/2019/11/01/supercomputer-award-granted-to-cieras-sasha-tchekhovskoy/,"Black Holes & Dead Stars","Northwestern Press",Achievement|Science +4713,"This Exoplanet is in a Death Dance with its Star",01/13/2020,https://ciera.northwestern.edu/2020/01/13/this-exoplanet-is-in-a-death-dance-with-its-star/,"Exoplanets & The Solar System","External Press",Science +4762,"CIERA Postdocs Advance to New Positions",09/01/2019,https://ciera.northwestern.edu/2019/09/01/ciera-postdocs-advance-to-new-positions-3/,,"CIERA Stories",Achievement +4763,"Using Gravitational Waves to See Inside Stars",12/09/2019,https://ciera.northwestern.edu/2019/12/09/using-gravitational-waves-to-see-inside-stars/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +4765,"Jeremy Schnittman Presents Interdisciplinary Colloquium Inspired by ‘Interstellar’",12/10/2019,https://ciera.northwestern.edu/2019/12/10/jeremy-schnittman-presents-interdisciplinary-colloquium-inspired-by-interstellar/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +4769,"New Year, New CIERA Open House Event",01/22/2020,https://ciera.northwestern.edu/2020/01/22/new-year-new-ciera-open-house-event/,,"CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Outreach" +4794,"The Sky is No Limit",02/19/2020,https://ciera.northwestern.edu/2020/02/19/the-sky-is-no-limit/,"Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +4800,"Cosmic ‘candy cane’ spotted in inner Milky Way",12/18/2019,https://ciera.northwestern.edu/2019/12/18/cosmic-candy-cane-spotted-in-inner-milky-way/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Science +4816,"CIERA REU Students Present at 235th Meeting of the AAS",01/10/2020,https://ciera.northwestern.edu/2020/01/10/ciera-reu-students-present-at-235th-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +4829,"Students from Chicago’s Off the Street Club Visit Dearborn Observatory",02/18/2020,https://ciera.northwestern.edu/2020/02/18/students-from-chicagos-off-the-street-club-visit-dearborn-observatory/,,"CIERA Stories","Data Science & Computing|Event|Outreach" +4833,"Professors Kalogera and Rasio Named in Legacy Group of AAS Fellows",02/25/2020,https://ciera.northwestern.edu/2020/02/25/professors-kalogera-and-rasio-named-in-first-group-of-aas-fellows/,,"External Press",Achievement +4855,"Coronavirus/COVID-19 Update",03/13/2020,https://ciera.northwestern.edu/2020/03/13/coronavirus-update/,,"CIERA Stories",Uncategorized +4863,"Proposal Workshop for New Observatory Held at CIERA",02/06/2020,https://ciera.northwestern.edu/2020/02/06/proposal-workshop-for-new-observatory-held-at-ciera/,,"CIERA Stories","Data Science & Computing|Education|Event" +4870,"Coronavirus/COVID-19 Update",03/25/2020,https://ciera.northwestern.edu/2020/03/25/coronavirus-update-2/,,"CIERA Stories",Uncategorized +4875,"Seven New Postdoctoral Researchers Join CIERA",04/01/2020,https://ciera.northwestern.edu/2020/04/01/seven-new-postdoctoral-researchers-join-ciera-2/,,"CIERA Stories",Achievement +4881,"CIERA’s Sasha Tchekhovskoy to Utilize the Fastest Academic Supercomputer in the World",04/09/2020,https://ciera.northwestern.edu/2020/04/09/cieras-sasha-tchekhovskoy-to-utilize-the-fastest-academic-supercomputer-in-the-world/,,"External Press","Achievement|Data Science & Computing|Science" +4883,"Earthquake Detective Featured by sustainNU in Citizen Science Project Spotlight",04/09/2020,https://ciera.northwestern.edu/2020/04/09/earthquake-detective-featured-by-sustainnu-in-citizen-science-project-spotlight/,,"Northwestern Press",Interdisciplinary|Outreach +4888,"Prof. Margutti Receives NSF Honor for Junior Faculty",03/26/2020,https://ciera.northwestern.edu/2020/03/26/prof-margutti-receives-nsf-honor-for-junior-faculty/,,"Northwestern Press",Achievement +4889,"A Supernova that Outshines All Others",04/13/2020,https://ciera.northwestern.edu/2020/04/13/a-supernova-that-outshines-all-others/,"Life & Death of Stars","External Press",Science +4899,"Astronomers Find First-Ever Collision of Black Holes With a Strange Mass Discrepancy",04/20/2020,https://ciera.northwestern.edu/2020/04/20/astronomers-find-first-ever-collision-of-black-holes-with-a-strange-mass-discrepancy/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4901,"NASA Hubble Fellowship Awarded to Michael Zevin",04/21/2020,https://ciera.northwestern.edu/2020/04/21/nasa-hubble-fellowship-awarded-to-michael-zevin/,,"CIERA Stories",Achievement +4903,"Tom Imperato ‘22P, Devoted CIERA Board of Visitors Member, Dies at 73",04/21/2020,https://ciera.northwestern.edu/2020/04/21/tom-imperato-22p-devoted-ciera-board-of-visitors-member-dies-at-73/,,"CIERA Stories",Uncategorized +4910,"Beverly Lowell Awarded NSF Graduate Research Fellowship",04/01/2020,https://ciera.northwestern.edu/2020/04/01/beverly-lowell-awarded-nsf-graduate-research-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +4912,"Danat Issa Awarded Frontera Computational Science Fellowship",03/24/2020,https://ciera.northwestern.edu/2020/03/24/danat-issa-awarded-frontera-computational-science-fellowship/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +4915,"NASA Einstein Postdoc Kate Alexander Named to Crain’s “20 in Their Twenties”",05/09/2020,https://ciera.northwestern.edu/2020/05/09/nasa-einstein-postdoc-kate-alexander-named-to-crains-20-in-their-twenties-for-2020/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press",Achievement +4921,"Using Gravitational Waves to Approximate Pi",05/19/2020,https://ciera.northwestern.edu/2020/05/19/using-gravitational-waves-to-approximate-pi/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +4924,"Astrophysicists Capture New Class of Transient Objects",05/26/2020,https://ciera.northwestern.edu/2020/05/26/astrophysicists-capture-new-class-of-transient-objects/,"Life & Death of Stars","Northwestern Press",Science +4934,"CIERA to Host National REU Leaders",05/27/2020,https://ciera.northwestern.edu/2020/05/27/ciera-to-host-national-reu-leaders/,,"CIERA Stories",Achievement|Education +4937,"Undergraduate Andrew Bowen Receives AAS Chambliss Award",05/07/2020,https://ciera.northwestern.edu/2020/05/07/undergraduate-andrew-bowen-receives-aas-chambliss-award/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4942,"Remote Learning Resources Available on New Reach for the Stars Website",05/28/2020,https://ciera.northwestern.edu/2020/05/28/remote-learning-resources-available-on-new-reach-for-the-stars-website/,,"CIERA Stories",Education|Outreach +4944,"Vicky Kalogera Featured in Crain's 2020 Notable Women in STEM",06/01/2020,https://ciera.northwestern.edu/2020/06/01/vicky-kalogera-featured-in-crains-2020-notable-women-in-stem/,,"CIERA Stories",Achievement +4948,"Black Lives Matter",06/06/2020,https://ciera.northwestern.edu/2020/06/06/black-lives-matter/,,"CIERA Stories",Uncategorized +4956,"Launching SCOPE, a Free Online Science Communication Program",06/12/2020,https://ciera.northwestern.edu/2020/06/12/launching-scope-a-free-online-science-communication-program/,,,Education|Interdisciplinary +4964,"New Mystery Merger Detected by LIGO-Virgo",06/23/2020,https://ciera.northwestern.edu/2020/06/23/gw190814/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +4977,"CIERA’s Nancy Aggarwal Wins GWIC-Braccini Thesis Prize",06/18/2020,https://ciera.northwestern.edu/2020/06/18/cieras-nancy-aggarwal-wins-gwic-braccini-thesis-prize/,,"CIERA Stories",Achievement +4978,"CIERA Ranks #1 for National Postdoctoral Fellowships",05/29/2020,https://ciera.northwestern.edu/2020/05/29/ciera-ranks-1-for-national-postdoctoral-fellowships/,"Black Holes & Dead Stars|Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +4982,"Undergraduate Kristopher Mortensen Earns Outstanding Thesis Research Award",06/19/2020,https://ciera.northwestern.edu/2020/06/19/undergraduate-kristopher-mortensen-earns-outstanding-thesis-research-award/,"Galaxies & Cosmology","CIERA Stories",Achievement +4998,"Short Gamma Ray Burst Leaves Most-distant Optical Afterglow Ever Detected",07/14/2020,https://ciera.northwestern.edu/2020/07/14/short-gamma-ray-burst-leaves-most-distant-optical-afterglow-ever-detected/,"Life & Death of Stars","Northwestern Press",Science +5003,"Spectacular ultraviolet flash may finally explain how white dwarfs explode",07/23/2020,https://ciera.northwestern.edu/2020/07/23/spectacular-ultraviolet-flash-may-finally-explain-how-white-dwarfs-explode/,"Life & Death of Stars","Northwestern Press",Science +5016,"Calcium-rich supernova examined with X-rays for first time",08/05/2020,https://ciera.northwestern.edu/2020/08/05/calcium-rich-supernova-examined-with-x-rays-for-first-time/,"Life & Death of Stars","Northwestern Press",Science +5025,"4th Award of LSSTC Enabling Science Grant to CIERA's Aaron Geller",08/06/2020,https://ciera.northwestern.edu/2020/08/06/4th-lsstc-enabling/,"Life & Death of Stars","CIERA Stories",Achievement|Education +5038,"Do Short Gamma-ray Bursts Produce Magnetars? Radio Observations Say: Probably Not",09/01/2020,https://ciera.northwestern.edu/2020/09/01/do-short-gamma-ray-bursts-produce-magnetars-radio-observations-say-probably-not/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +5070,"Scientists detect first-of-its-kind ‘intermediate-mass‘ black hole",09/02/2020,https://ciera.northwestern.edu/2020/09/02/gw190521/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +5078,"CIERA Postdocs Move on to New Positions",09/17/2020,https://ciera.northwestern.edu/2020/09/17/ciera-postdocs-move-on-to-new-positions/,,"CIERA Stories",Achievement +5094,"Observations of Andromeda’s Halo Test Predictions of Galaxy Formation Models by CIERA Scientists",09/08/2020,https://ciera.northwestern.edu/2020/09/08/observations-of-andromedas-halo-test-predictions-of-galaxy-formation-models-by-ciera-scientists/,"Galaxies & Cosmology","CIERA Stories",Science +5112,"CIERA Welcomes New Faculty Members Ryan Chornock and Daniel Lecoanet",09/17/2020,https://ciera.northwestern.edu/2020/09/17/ciera-welcomes-new-faculty-members-ryan-chornock-and-daniel-lecoanet/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +5114,"CIERA High School Summer Research Experience in Astronomy Goes Remote!",08/14/2020,https://ciera.northwestern.edu/2020/08/14/high-school-summer-research-experience-in-astronomy-goes-remote/,,"CIERA Stories",Education|Outreach +5129,"CIERA's REU Program Goes Virtual!",08/31/2020,https://ciera.northwestern.edu/2020/08/31/cieras-reu-program-goes-virtual/,,"CIERA Stories",Education|Interdisciplinary +5382,"Update on Initiative for Social Justice",10/01/2020,https://ciera.northwestern.edu/2020/10/01/update-on-initiative-for-social-justice/,,"CIERA Stories",Uncategorized +5446,"The Low Spin of the Milky Way's Supermassive Black Hole",10/20/2020,https://ciera.northwestern.edu/2020/10/20/the-low-spin-of-the-milky-ways-supermassive-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +5454,"Star 'Spaghettified' by a Supermassive Black Hole",10/12/2020,https://ciera.northwestern.edu/2020/10/12/star-spaghettified-by-a-supermassive-black-hole/,"Black Holes & Dead Stars","CIERA Stories",Science +5523,"Black hole ‘family portrait’ is most detailed to date",10/29/2020,https://ciera.northwestern.edu/2020/10/28/black-hole-family-portrait-is-most-detailed-to-date/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +5526,"Statement of Principles and Values",10/28/2020,https://ciera.northwestern.edu/2020/10/28/statement-of-principles-and-values/,,"CIERA Stories",Uncategorized +5535,"Growing Library of Educational Brochures by CIERA Astronomers",10/30/2020,https://ciera.northwestern.edu/2020/10/30/growing-library-of-educational-brochures-by-ciera-astronomers/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education +5537,"Shane Larson Presents Virtual Public Lecture on the Milky Way",11/03/2020,https://ciera.northwestern.edu/2020/11/03/shane-larson-presents-virtual-public-lecture-on-the-milky-way/,,"CIERA Stories",Event|Outreach +5578,"NASA's Hubble Sees Unexplained Brightness from Colossal Explosion",11/12/2020,https://ciera.northwestern.edu/2020/11/12/nasas-hubble-sees-unexplained-brightness-from-colossal-explosion/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5606,"Rare Short Gamma-ray Burst Discovered in Galaxy Cluster",11/23/2020,https://ciera.northwestern.edu/2020/11/23/rare-short-gamma-ray-burst-discovered-in-galaxy-cluster/,"Galaxies & Cosmology|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Science +5624,"André de Gouvêa Selected as 2020 AAAS Fellow",11/30/2020,https://ciera.northwestern.edu/2020/11/30/de-gouvea-2020-aaas-fellow/,,"CIERA Stories",Achievement +5641,"Supercomputing Time Awarded for Third Year to Sasha Tchekhovskoy",11/16/2020,https://ciera.northwestern.edu/2020/11/16/supercomputing-time-awarded-for-third-year-to-sasha-tchekhovskoy/,"Black Holes & Dead Stars","CIERA Stories","Achievement|Data Science & Computing" +5678,"Planets to appear nearly aligned creating ‘Christmas star’ last widely visible 800 years ago",12/14/2020,https://ciera.northwestern.edu/2020/12/14/christmas-star/,"Exoplanets & The Solar System","External Press",Outreach +5726,"Faucher-Giguère Named Highly Cited Researcher for Second Year",12/21/2020,https://ciera.northwestern.edu/2020/12/21/faucher-giguere-named-highly-cited-researcher-for-second-year/,"Galaxies & Cosmology","External Press",Achievement +5732,"The Upside of Volatile Space Weather",12/21/2020,https://ciera.northwestern.edu/2020/12/21/the-upside-of-volatile-space-weather/,"Exoplanets & The Solar System","Northwestern Press",Interdisciplinary|Science +5759,"2020 Midwest Relativity Meeting Blue Apple Awarded to Lindsay DeMarchi",10/25/2020,https://ciera.northwestern.edu/2020/10/25/2020-midwest-relativity-meeting-blue-apple-awarded-to-lindsay-demarchi/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +5761,"String of Stars in Milky Way are Related",01/15/2021,https://ciera.northwestern.edu/2021/01/15/string-of-stars-in-milky-way-are-related/,"Stellar Dynamics & Stellar Populations","Northwestern Press",Science +5795,"‘Unicorn’ Discovery Points to a New Population of Black Holes",01/28/2021,https://ciera.northwestern.edu/2021/01/28/unicorn-discovery-points-to-a-new-population-of-black-holes/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5806,"CIERA Astronomy LIVE Debuts on YouTube",02/01/2021,https://ciera.northwestern.edu/2021/02/01/ciera-astronomy-live-debuts-on-youtube/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Life & Death of Stars","CIERA Stories",Event|Outreach +5842,"Growing Inventory of Black Holes Offers a Radical Probe of the Cosmos",02/18/2021,https://ciera.northwestern.edu/2021/02/18/growing-inventory-of-black-holes-offers-a-radical-probe-of-the-cosmos/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Science +5863,"Major Award for Gravitational Wave Researcher Christopher Berry",03/15/2021,https://ciera.northwestern.edu/2021/03/15/major-award-for-gravitational-wave-researcher-christopher-berry/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +5864,"New Kind of Space Explosion Reveals the Birth of a Black Hole",03/12/2021,https://ciera.northwestern.edu/2021/03/12/new-kind-of-space-explosion-reveals-the-birth-of-a-black-hole/,"Black Holes & Dead Stars|Life & Death of Stars","External Press",Science +5883,"Welcome New CIERA Postdoctoral Researchers",03/18/2021,https://ciera.northwestern.edu/2021/03/18/welcome-new-ciera-postdoctoral-researchers/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +5904,"Prof. Fong Receives NSF Honor for Young Faculty",03/24/2021,https://ciera.northwestern.edu/2021/03/24/prof-fong-receives-nsf-honor-for-young-faculty/,"Life & Death of Stars","Northwestern Press",Achievement +5906,"New Issue of “LIGO Magazine” Features Gravitational Wave Article by Eve Chase",03/25/2021,https://ciera.northwestern.edu/2021/03/25/new-issue-of-ligo-magazine-features-gravitational-wave-article-by-eve-chase/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Outreach +5920,"200+ International Scientists Attend Virtual Conference on Triple Evolution & Dynamics",04/02/2021,https://ciera.northwestern.edu/2021/04/02/200-international-scientists-attend-virtual-conference-on-triple-evolution-dynamics/,"Stellar Dynamics & Stellar Populations","CIERA Stories",Event +5939,"Vicky Kalogera Named 2021 Guggenheim Fellow",04/12/2021,https://ciera.northwestern.edu/2021/04/12/vicky-kalogera-named-2021-guggenheim-fellow/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Achievement +5958,"NSF Graduate Fellowships Awarded to Astronomy Students",04/19/2021,https://ciera.northwestern.edu/2021/04/19/nsf-graduate-research-fellowships-2021/,,"CIERA Stories",Achievement|Education +5979,"Vicky Kalogera Elected to American Academy of Arts and Sciences",04/23/2021,https://ciera.northwestern.edu/2021/04/23/vicky-kalogera-elected-to-american-academy-of-arts-and-sciences/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +6008,"Gamma-Ray Burst Studied by CIERA Astronomers Challenges Traditional Classification of GRBs",04/28/2021,https://ciera.northwestern.edu/2021/04/28/gamma-ray-burst-studied-by-ciera-astronomers-challenges-traditional-classification-of-grbs/,"Life & Death of Stars","CIERA Stories",Science +6010,"American Physical Society Elects Professors Margutti and Larson to Committees",04/17/2021,https://ciera.northwestern.edu/2021/04/17/american-physical-society-elects-professors-margutti-and-larson-to-committees/,,"CIERA Stories",Achievement +6028,"James Kasting Presents Joint Interdisciplinary Colloquium",05/03/2021,https://ciera.northwestern.edu/2021/05/03/james-kasting-presents-joint-interdisciplinary-colloquium/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +6033,"‘Oddball supernova’ appears strangely cool before exploding",05/05/2021,https://ciera.northwestern.edu/2021/05/05/oddball-supernova-appears-strangely-cool-before-exploding/,"Life & Death of Stars","External Press|Northwestern Press",Science +6073,"Alumnus Dr. K. Chris Oh Integrates Physics Education in his Career",05/17/2021,https://ciera.northwestern.edu/2021/05/17/alumnus-dr-k-chris-oh-integrates-physics-education-in-his-career/,,"Northwestern Press",Education|Interdisciplinary|Outreach +6078,"Stunning simulation of stars being born is most realistic ever",05/17/2021,https://ciera.northwestern.edu/2021/05/17/stunning-simulation-of-stars-being-born-is-most-realistic-ever/,"Galaxies & Cosmology|Life & Death of Stars","External Press|Northwestern Press","Data Science & Computing|Science" +6083,"Postdoctoral Fellow Mike Grudić Awarded NASA Hubble Fellowship",05/18/2021,https://ciera.northwestern.edu/2021/05/18/postdoctoral-fellow-mike-grudic-awarded-nasa-hubble-fellowship/,"Galaxies & Cosmology|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +6094,"Intense radio blasts traced to galaxies’ spiral arms",05/20/2021,https://ciera.northwestern.edu/2021/05/20/intense-radio-blasts-traced-to-galaxies-spiral-arms/,"Life & Death of Stars","External Press|Northwestern Press",Science +6180,"Astrophysicists detect first black hole-neutron star mergers",06/29/2021,https://ciera.northwestern.edu/2021/06/29/astrophysicists-detect-first-black-hole-neutron-star-mergers/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +6264,"Social scientists, astrophysicists to probe the Universe’s deepest mysteries",08/16/2021,https://ciera.northwestern.edu/2021/08/16/social-scientists-astrophysicists-to-probe-the-universes-deepest-mysteries/,,"Northwestern Press","Data Science & Computing|Interdisciplinary" +6267,"New simulation shows how galaxies feed their supermassive black holes",08/17/2021,https://ciera.northwestern.edu/2021/08/17/new-simulation-shows-how-galaxies-feed-their-supermassive-black-holes/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press","Data Science & Computing|Science" +6326,"CIERA Members Win 2nd Place for JSPG Policy Position Paper",08/30/2021,https://ciera.northwestern.edu/2021/08/30/ciera-members-win-2nd-place-for-jspg-policy-position-paper/,,"Northwestern Press",Achievement|Interdisciplinary +6358,"Luke Kelley Awarded Cottrell Fellowship",09/08/2021,https://ciera.northwestern.edu/2021/09/08/luke-kelley-awarded-cottrell-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +6435,"Another Successful CIERA REU Program in the Books!",10/20/2021,https://ciera.northwestern.edu/2021/10/20/another-successful-ciera-reu-program-in-the-books/,,"CIERA Stories",Education|Interdisciplinary +6436,"REACH Continues to Grow!",10/20/2021,https://ciera.northwestern.edu/2021/10/20/reach-continues-to-grow/,,"CIERA Stories",Education|Outreach +6553,"Professor Wen-fai Fong Receives Prestigious Packard Fellowship",10/14/2021,https://ciera.northwestern.edu/2021/10/14/professor-wen-fai-fong-receives-prestigious-packard-fellowship/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Achievement +6556,"Did a black hole eating a star generate a neutrino? Unlikely, new study shows",10/20/2021,https://ciera.northwestern.edu/2021/10/20/did-a-black-hole-eating-a-star-generate-a-neutrino-unlikely-new-study-shows/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Science +6606,"CIERA Research Assistant Professor Giacomo Fragione Receives NASA Grant for LISA Preparatory Science Program",11/01/2021,https://ciera.northwestern.edu/2021/11/01/ciera-professor-giacomo-fragione-receives-nasa-grant-for-lisa-preparatory-science-program/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Science +6642,"Black holes of ‘all shapes and sizes’ in new gravitational-wave catalog",11/08/2021,https://ciera.northwestern.edu/2021/11/08/black-holes-of-all-shapes-and-sizes-in-new-gravitational-wave-catalog/,"Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +6662,"CIERA Welcomes New Faculty Member Adam Miller",09/01/2021,https://ciera.northwestern.edu/2021/09/01/ciera-welcomes-new-faculty-member-adam-miller/,"Life & Death of Stars","CIERA Stories",Achievement +6664,"Phil Plait Presents 12th Annual CIERA Public Lecture",10/21/2021,https://ciera.northwestern.edu/2021/10/21/phil-plait-presents-12th-annual-ciera-public-lecture/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +6747,"Looking forward to a huge leap in space exploration",12/17/2021,https://ciera.northwestern.edu/2021/12/17/looking-forward-to-a-huge-leap-in-space-exploration/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Achievement|Science +6776,"Astronomers capture red supergiant’s death throes",01/06/2022,https://ciera.northwestern.edu/2022/01/06/astronomers-capture-red-supergiants-death-throes/,"Life & Death of Stars","Northwestern Press",Science +6828,"Nearly 1,000 mysterious strands revealed in Milky Way’s center",01/26/2022,https://ciera.northwestern.edu/2022/01/26/nearly-1000-mysterious-strands-revealed-in-milky-ways-center/,"Galaxies & Cosmology","Northwestern Press",Science +6871,"Wen-fai Fong receives Cottrell Scholar Award",02/09/2022,https://ciera.northwestern.edu/2022/02/09/wen-fai-fong-receives-cottrell-scholar-award/,"Life & Death of Stars","Northwestern Press",Achievement|Education +6885,"Wen-fai Fong named Sloan Research Fellow",02/15/2022,https://ciera.northwestern.edu/2022/02/15/six-northwestern-professors-named-sloan-research-fellows/,"Life & Death of Stars","Northwestern Press",Achievement +6919,"High School Student and CIERA Postdoctoral Fellow Mentor Publish Star Formation Simulation Research",02/23/2022,https://ciera.northwestern.edu/2022/02/23/high-school-student-and-ciera-postdoctoral-fellow-mentor-publish-star-formation-simulation-research/,"Life & Death of Stars","CIERA Stories","Data Science & Computing|Education|Outreach|Science" +6926,"Conference in snowy Aspen brings astrophysicists together",02/24/2022,https://ciera.northwestern.edu/2022/02/24/conference-in-snowy-aspen-brings-astrophysicists-together/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Event|Science +6944,"Kilonova afterglow potentially spotted for first time",02/28/2022,https://ciera.northwestern.edu/2022/02/28/kilonova-afterglow-potentially-spotted-for-first-time/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +6999,"CIERA High School Researcher is Regeneron National Science Talent Search Grand Prize Winner",03/16/2022,https://ciera.northwestern.edu/2022/03/16/ciera-high-school-research-is-regeneron-national-science-talent-search-grand-prize-winner/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Education|Outreach +7024,"Ariadna Murguia Berthier Top 3 Finalist for AAS HEAD Dissertation Prize",04/01/2022,https://ciera.northwestern.edu/2022/04/01/ariadna-murguia-berthier-top-3-finalist-for-aas-head-dissertation-prize/,"Black Holes & Dead Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7031,"Monica Gallegos Garcia Selected for 2022 Bouchet Honor Society",04/06/2022,https://ciera.northwestern.edu/2022/04/06/monica-gallegos-garcia-selected-for-2022-bouchet-honor-society/,,"CIERA Stories",Achievement +7033,"CIERA Astronomers Travel to Mexico to Install TolTEC Camera",04/06/2022,https://ciera.northwestern.edu/2022/04/06/ciera-astronomers-travel-to-mexico-to-install-toltec-camera/,"Life & Death of Stars","CIERA Stories",Science +7040,"Five New Postdoctoral Researchers Join CIERA",04/08/2022,https://ciera.northwestern.edu/2022/04/08/five-new-postdoctoral-researchers-join-ciera/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7060,"ALMA Community Day",04/18/2022,https://ciera.northwestern.edu/2022/04/18/alma-community-day/,"Black Holes & Dead Stars|Exoplanets & The Solar System","CIERA Stories",Achievement|Event +7066,"Dying Stars’ Cocoons Might Explain Fast Blue Optical Transients",04/20/2022,https://ciera.northwestern.edu/2022/04/20/dying-stars-cocoons-might-explain-fast-blue-optical-transients/,"Life & Death of Stars","External Press|Northwestern Press",Science +7084,"Erin Cox Awarded NSF MPS-Ascend Fellowship",04/29/2022,https://ciera.northwestern.edu/2022/04/29/erin-cox-awarded-nsf-mps-ascend-fellowship/,"Life & Death of Stars","CIERA Stories",Achievement +7104,"Tarraneh Eftekhari Named NASA Einstein Fellow",05/03/2022,https://ciera.northwestern.edu/2022/05/03/tarraneh-eftekhari-named-nasa-einstein-fellow/,"Life & Death of Stars","CIERA Stories",Achievement +7146,"CIERA'S Inaugural Astronomy Night Out",05/20/2022,https://ciera.northwestern.edu/2022/05/20/cieras-inaugural-astronomy-night-out/,"Life & Death of Stars","CIERA Stories",Event|Outreach +7155,"Alex Gurvich Wins Northwestern's Data Visualization Contest",06/07/2022,https://ciera.northwestern.edu/2022/06/07/alex-gurvich-wins-northwesterns-data-visualization-contest/,"Galaxies & Cosmology","CIERA Stories","Achievement|Data Science & Computing" +7157,"May 15 Lunar Eclipse Public Viewing",06/08/2022,https://ciera.northwestern.edu/2022/06/08/may-15-lunar-eclipse-public-viewing/,,"CIERA Stories|External Press",Event|Outreach +7162,"CIERA Researchers Quoted in Sky & Telescope June Cover Story",06/01/2022,https://ciera.northwestern.edu/2022/06/01/ciera-researchers-quoted-in-sky-telescope-june-cover-story/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories|External Press",Achievement|Outreach +7177,"Wandering star disrupts stellar nursery",06/13/2022,https://ciera.northwestern.edu/2022/06/13/wandering-star-disrupts-stellar-nursery/,"Life & Death of Stars","External Press|Northwestern Press",Science +7196,"CIERA Faculty member successfully launches new conference on Intermediate-Mass Black Holes",06/21/2022,https://ciera.northwestern.edu/2022/06/21/ciera-faculty-member-successfully-launches-new-conference-on-intermediate-mass-black-holes/,"Black Holes & Dead Stars|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Event|Science +7205,"SCOPE Program rising in numbers and influence",06/21/2022,https://ciera.northwestern.edu/2022/06/21/scope-program-rising-in-numbers-and-influence/,,"CIERA Stories",Education|Interdisciplinary +7223,"Falling stardust, wobbly jets explain blinking gamma ray bursts",06/29/2022,https://ciera.northwestern.edu/2022/06/29/falling-stardust-wobbly-jets-explain-blinking-gamma-ray-bursts/,"Black Holes & Dead Stars","Northwestern Press",Science +7243,"CIERA student's paper highlighted by NASA's SOFIA Science Center",07/08/2022,https://ciera.northwestern.edu/2022/07/08/ciera-students-paper-highlighted-by-nasas-sofia-science-center/,"Life & Death of Stars","External Press",Science +7265,"Northwestern astrophysicists snag early time on James Webb Space Telescope",07/12/2022,https://ciera.northwestern.edu/2022/07/12/northwestern-astrophysicists-snag-early-time-on-james-webb-space-telescope/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Achievement|Science +7285,"Explosive neutron star merger captured for first time in millimeter light",08/03/2022,https://ciera.northwestern.edu/2022/08/03/explosive-neutron-star-merger-captured-for-first-time-in-millimeter-light/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +7296,"Stars determine their own masses",08/08/2022,https://ciera.northwestern.edu/2022/08/08/stars-determine-their-own-masses/,"Life & Death of Stars","External Press|Northwestern Press",Science +7305,"LSST observations of tidal disruption events may uncover existence of dark matter particles",08/12/2022,https://ciera.northwestern.edu/2022/08/12/lsst-observations-of-tidal-disruption-events-may-uncover-existence-of-dark-matter-particles/,"Black Holes & Dead Stars|Galaxies & Cosmology","CIERA Stories",Science +7306,"Women astronomers leading the revolution",08/11/2022,https://ciera.northwestern.edu/2022/08/11/women-astronomers-leading-the-revolution/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Outreach +7325,"Northwestern rocket to image supernova remnant",08/11/2022,https://ciera.northwestern.edu/2022/08/11/northwestern-rocket-to-image-supernova-remnant/,"Black Holes & Dead Stars|Life & Death of Stars","Northwestern Press",Event|Science +7350,"CIERA Postdocs Advance to New Positions",09/14/2022,https://ciera.northwestern.edu/2022/09/14/ciera-postdocs-advance-to-new-positions-4/,,"CIERA Stories",Achievement +7355,"REACH 2022 Sessions Back In-Person",09/16/2022,https://ciera.northwestern.edu/2022/09/16/reach-2022-sessions/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach +7357,"RET 2022 Completion of a Successful First Year",09/01/2022,https://ciera.northwestern.edu/2022/09/01/ret-2022/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach +7358,"REU Welcomed 14 Students to Campus for a Successful 2022 Summer",09/12/2022,https://ciera.northwestern.edu/2022/09/12/reu-2022/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Interdisciplinary|Outreach +7359,"X-shaped radio galaxies might form more simply than expected",08/29/2022,https://ciera.northwestern.edu/2022/08/29/x-shaped-radio-galaxies-might-form-more-simply-than-expected/,"Black Holes & Dead Stars|Galaxies & Cosmology","Northwestern Press",Science +7376,"The Recipient of the 2022 Robert J. Trumpler Award is Dr. Ariadna Murguia Berthier",08/31/2022,https://ciera.northwestern.edu/2022/08/31/the-recipient-of-the-2022-robert-j-trumpler-award-is-dr-ariadna-murguia-berthier/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +7385,"Northwestern astrophysicist contributes to Webb’s first exoplanet image",09/01/2022,https://ciera.northwestern.edu/2022/09/01/northwestern-astrophysicist-contributes-to-webbs-first-exoplanet-image/,"Exoplanets & The Solar System","External Press|Northwestern Press",Science +7400,"CIERA Welcomes New Faculty Members: Allison Strom and Jason Wang",09/06/2022,https://ciera.northwestern.edu/2022/09/06/ciera-welcomes-new-faculty-members-allison-strom-and-jason-wang/,"Exoplanets & The Solar System|Galaxies & Cosmology","CIERA Stories",Achievement +7449,"A quick jump into space — and back — for pictures of ‘star stuff’",08/29/2022,https://ciera.northwestern.edu/2022/08/29/a-quick-jump-into-space-and-back-for-pictures-of-star-stuff/,"Black Holes & Dead Stars|Life & Death of Stars","Northwestern Press",Interdisciplinary|Science +7610,"CIERA welcomes DSFP back to Northwestern",10/12/2022,https://ciera.northwestern.edu/2022/10/12/ciera-welcomes-dsfp-back-to-northwestern/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +7631,"The 2023 APS Francis M. Pipkin Award Has Been Given to Andrew Geraci",10/13/2022,https://ciera.northwestern.edu/2022/10/13/the-2023-aps-francis-m-pipkin-award-has-been-given-to-andrew-geraci/,,"CIERA Stories",Achievement +7634,"Carolyn Porco Presents 13th Annual CIERA Public Lecture",11/07/2022,https://ciera.northwestern.edu/2022/11/07/carolyn-porco-presents-13th-annual-ciera-public-lecture/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +7643,"Brightest-ever gamma-ray burst breaks records",10/18/2022,https://ciera.northwestern.edu/2022/10/18/brightest-ever-gamma-ray-burst-breaks-records/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +7657,"CIERA Alum Carl Rodriguez wins Packard Fellowship",10/20/2022,https://ciera.northwestern.edu/2022/10/20/ciera-alum-carl-rodriguez-wins-packard-fellowship/,"Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +7698,"CIERA Hosts SEDM & ZTF",11/04/2022,https://ciera.northwestern.edu/2022/11/04/ciera-hosts-sedm-ztf/,"Life & Death of Stars","CIERA Stories",Event +7705,"ALMA Data Reduction Workshop",11/14/2022,https://ciera.northwestern.edu/2022/11/14/alma-data-reduction-workshop/,,"CIERA Stories",Education|Event +7706,"Explore the Cosmos with CIERA",11/11/2022,https://ciera.northwestern.edu/2022/11/11/explore-the-cosmos-with-ciera/,,"CIERA Stories",Achievement|Event|Outreach +7711,"What makes gamma-ray bursts blink on and off?",11/08/2022,https://ciera.northwestern.edu/2022/11/08/what-makes-gamma-ray-bursts-blink-on-and-off/,,"External Press",Science +7735,"Short gamma-ray bursts traced farther into distant universe",11/21/2022,https://ciera.northwestern.edu/2022/11/21/short-gamma-ray-bursts-traced-farther-into-distant-universe/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +7744,"Team with Northwestern astrophysicists competes for $300 million",11/28/2022,https://ciera.northwestern.edu/2022/11/28/team-with-northwestern-astrophysicists-competes-for-300-million/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Achievement|Science +7757,"REU Site Directors Meeting Led by CIERA's Aaron Geller",12/08/2022,https://ciera.northwestern.edu/2022/12/08/reu-site-directors-meeting-led-by-ciera-member/,,"CIERA Stories",Education|Event|Interdisciplinary +7765,"CIERA Interdisciplinary Colloquium: Enectalí Figueroa-Feliciano Presents ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",12/16/2022,https://ciera.northwestern.edu/2022/12/16/ciera-interdisciplinary-colloquium-enectali-figueroa-feliciano-presents-extremely-cool-detectors-on-a-fireball-launching-the-micro-x-sounding-rocket/,"Black Holes & Dead Stars|Life & Death of Stars","CIERA Stories",Event|Interdisciplinary +7768,"Surprise kilonova upends established understanding of long gamma-ray bursts",12/07/2022,https://ciera.northwestern.edu/2022/12/07/surprise-kilonova-upends-established-understanding-of-long-gamma-ray-bursts/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +7797,"Local Group Cluster Search led by CIERA Postdoctoral Fellow Cliff Johnson",01/06/2023,https://ciera.northwestern.edu/2023/01/06/the-local-group-cluster-search-led-by-ciera-postdoctoral-fellow-cliff-johnson-recently-published-results/,"Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Outreach|Science +7845,"Graduate Student Jillian Rastinejad Spotlighted on NASA Universe",01/05/2023,https://ciera.northwestern.edu/2023/01/05/ciera-graduate-student-jillian-rastinejad-spotlighted-on-nasa-universe/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","CIERA Stories",Achievement +7881,"Researchers develop Firefly: an innovation in interactive particle visualization",01/10/2023,https://ciera.northwestern.edu/2023/01/10/researchers-develop-firefly-an-innovation-in-interactive-particle-visualization/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories","Data Science & Computing|Interdisciplinary|Outreach" +7894,"Professor Dave Meyer retires after 35 years at Northwestern",01/11/2023,https://ciera.northwestern.edu/2023/01/11/professor-dave-meyer-retires-after-35-years-at-northwestern/,,"CIERA Stories",Achievement +7914,"Research Student Madeline Oh Named a Top 300 Teen Scientist by Regeneron Science Talent Search",01/13/2023,https://ciera.northwestern.edu/2023/01/13/ciera-research-student-madeline-oh-named-scholar-in-the-regeneron-science-talent-search/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement|Education +7916,"First exoplanet detected with Gaia satellite found to be undergoing nuclear fusion",01/18/2023,https://ciera.northwestern.edu/2023/01/18/first-exoplanet-detected-with-gaia-satellite-found-to-be-undergoing-nuclear-fusion/,"Exoplanets & The Solar System","CIERA Stories|External Press",Science +7918,"Ultracool dwarf binary stars break records",01/17/2023,https://ciera.northwestern.edu/2023/01/17/ultracool-dwarf-binary-stars-break-records/,"Life & Death of Stars","External Press|Northwestern Press",Science +7954,"CIERA REU Students Present at 241st Meeting of the AAS",01/23/2023,https://ciera.northwestern.edu/2023/01/23/ciera-reu-students-present-at-241st-meeting-of-the-aas/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Education|Event|Interdisciplinary +7996,"Watch distant worlds dance around their sun",01/31/2023,https://ciera.northwestern.edu/2023/01/31/watch-distant-worlds-dance-around-their-sun/,"Exoplanets & The Solar System","External Press|Northwestern Press",Outreach|Science +8015,"Graduate student's photos of green comet featured in major media outlets",02/03/2023,https://ciera.northwestern.edu/2023/02/03/green-comet-visible-in-the-night-sky-for-first-time-since-stone-age-makes-its-closest-pass-by-earth/,"Galaxies & Cosmology","External Press",Outreach +8054,"Postdoc Anna Childs discusses M-dwarfs on SETI Live Broadcast",02/16/2023,https://ciera.northwestern.edu/2023/02/16/postdoc-anna-childs-discusses-m-dwarfs-on-seti-live-broadcast/,"Exoplanets & The Solar System","CIERA Stories",Event|Outreach +8056,"CIERA Alum Daniel Anglés-Alcázar wins Cottrell Scholar Award",02/16/2023,https://ciera.northwestern.edu/2023/02/16/ciera-alum-daniel-angles-alcazar-wins-cottrell-scholar-award/,"Galaxies & Cosmology","CIERA Stories",Achievement +8061,"Wen-fai Fong named ‘Rising Star’ by Astronomy Magazine",02/16/2023,https://ciera.northwestern.edu/2023/02/16/wen-fai-fong-named-rising-star-by-astronomy-magazine/,"Black Holes & Dead Stars","External Press|Northwestern Press",Achievement +8085,"Climate of Mars, past and future: a CIERA Interdisciplinary Colloquium by Edwin Kite",03/28/2023,https://ciera.northwestern.edu/2023/03/28/climate-of-mars-past-and-future-a-ciera-interdisciplinary-colloquium-by-edwin-kite/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +8125,"REU Student Claire Zwicker Wins Chambliss Honorable Mention for Research Poster at AAS",03/28/2023,https://ciera.northwestern.edu/2023/03/28/reu-student-claire-zwicker-wins-chambliss-honorable-mention-for-research-poster-at-aas/,"Stellar Dynamics & Stellar Populations","CIERA Stories","Achievement|Data Science & Computing|Education|Interdisciplinary" +8131,"Northwestern to host gravitational-wave researchers from around the globe",03/08/2023,https://ciera.northwestern.edu/2023/03/08/northwestern-to-host-gravitational-wave-researchers-from-around-the-globe/,"Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Event +8153,"Origin, Evolution and Habitability of Planet Earth: a CIERA Interdisciplinary Colloquium by David Bercovici",04/04/2023,https://ciera.northwestern.edu/2023/04/04/origin-evolution-and-habitability-of-planet-earth-a-ciera-interdisciplinary-colloquium-by-david-bercovici/,"Exoplanets & The Solar System","CIERA Stories",Event|Interdisciplinary +8166,"International LIGO-Virgo-KAGRA Collaboration Meeting hosted by CIERA",04/14/2023,https://ciera.northwestern.edu/2023/04/14/international-ligo-virgo-kagra-collaboration-meeting-hosted-by-ciera/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event +8173,"Star Eyes outreach initiative communicates new science through new music",04/17/2023,https://ciera.northwestern.edu/2023/04/17/star-eyes-outreach-initiative-communicates-new-science-through-new-music/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Event|Interdisciplinary|Outreach +8204,"Introducing CIERA's Eleven New Postdocs!",04/18/2023,https://ciera.northwestern.edu/2023/04/18/introducing-cieras-eleven-new-postdocs/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement +8223,"CIERA Connections: Ben Nelson on careers in data science",04/20/2023,https://ciera.northwestern.edu/2023/04/20/ciera-connections-ben-nelson-on-careers-in-data-science/,,"CIERA Stories","Data Science & Computing|Education|Event|Interdisciplinary" +8226,"Data Science Challenges in Gravitational Wave Surveys: a CIERA Interdisciplinary Colloquium by Tyson Littenburg",04/20/2023,https://ciera.northwestern.edu/2023/04/20/data-science-challenges-in-gravitational-wave-surveys-a-ciera-interdisciplinary-colloquium-by-tyson-littenburg/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Data Science & Computing|Event|Interdisciplinary" +8247,"CIERA Associate Faculty Jian Cao Elected to American Academy of Arts and Sciences",04/25/2023,https://ciera.northwestern.edu/2023/04/25/ciera-associate-faculty-jian-cao-elected-to-american-academy-of-arts-and-sciences/,,"Northwestern Press",Achievement|Interdisciplinary +8250,"Medium-sized black holes eat stars like messy toddlers",04/25/2023,https://ciera.northwestern.edu/2023/04/25/medium-sized-black-holes-eat-stars-like-messy-toddlers/,"Black Holes & Dead Stars","External Press|Northwestern Press",Science +8271,"Postdoc Caitlin Witt named finalist of Cecilia Payne-Gaposchkin Thesis Award",04/28/2023,https://ciera.northwestern.edu/2023/04/28/postdoc-caitlin-witt-named-finalist-of-cecilia-payne-gaposchkin-thesis-award/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories",Achievement +8295,"Gravity Spy 2.0 gears up for the next gravitational wave observing run",05/18/2023,https://ciera.northwestern.edu/2023/05/18/gravity-spy-2-0-gears-up-for-the-next-gravitational-wave-observing-run/,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Data Science & Computing|Event|Interdisciplinary|Outreach" +8298,"Monica Gallegos-Garcia awarded Northwestern Presidential Fellowship",05/15/2023,https://ciera.northwestern.edu/2023/05/15/monica-gallegos-garcia-awarded-northwestern-presidential-fellowship/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Achievement +8305,"Four CIERA Members awarded NSF Graduate Research Fellowships",05/16/2023,https://ciera.northwestern.edu/2023/05/16/four-ciera-members-awarded-nsf-graduate-research-fellowships/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy|Stellar Dynamics & Stellar Populations","CIERA Stories",Achievement|Interdisciplinary +8323,"""Interconnected: A Journey Through Inner and Outer Space"": A CIERA Interdisciplinary Colloquium by Nia Imara",05/31/2023,https://ciera.northwestern.edu/2023/05/31/interconnected-a-journey-through-inner-and-outer-space-a-ciera-interdisciplinary-colloquium-by-nia-imara/,"Life & Death of Stars","CIERA Stories",Event|Interdisciplinary +8335,"Aaron Geller and Alex Gurvich showcase Firefly on AAS Journal Author Series",06/01/2023,https://ciera.northwestern.edu/2023/06/01/aaron-geller-and-alex-gurvich-showcase-firefly-on-aas-journal-author-series/,"Black Holes & Dead Stars|Exoplanets & The Solar System|Galaxies & Cosmology|Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars|Stellar Dynamics & Stellar Populations","CIERA Stories|External Press","Data Science & Computing|Event|Interdisciplinary|Outreach" +8361,"CIERA Connections: Harry Kraemer on living a values-based life",06/02/2023,https://ciera.northwestern.edu/2023/06/02/ciera-connections-harry-kraemer-on-living-a-values-based-life/,,"CIERA Stories",Event|Interdisciplinary +8365,"PhD Candidate Emma Kaufman awarded Chateaubriand Fellowship",06/07/2023,https://ciera.northwestern.edu/2023/06/07/phd-candidate-emma-kaufman-awarded-chateaubriand-fellowship/,"Exoplanets & The Solar System","CIERA Stories",Achievement +8370,"Dying stars’ cocoons could be new source of gravitational waves",06/05/2023,https://ciera.northwestern.edu/2023/06/05/dying-stars-cocoons-could-be-new-source-of-gravitational-waves/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","External Press|Northwestern Press",Science +8374,"Mysterious dashes revealed in Milky Way’s center",06/06/2023,https://ciera.northwestern.edu/2023/06/06/mysterious-dashes-revealed-in-milky-ways-center/,"Galaxies & Cosmology|Life & Death of Stars","Northwestern Press",Science +8389,"Gravitational waves from supermassive black hole binaries might be ‘right around the corner’",06/08/2023,https://ciera.northwestern.edu/2023/06/08/gravitational-waves-from-supermassive-black-hole-binaries-might-be-right-around-the-corner/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","Northwestern Press",Science +8410,"Stellar demolition derby births powerful gamma-ray burst",06/22/2023,https://ciera.northwestern.edu/2023/06/22/stellar-demolition-derby-births-powerful-gamma-ray-burst/,"Gravitational Waves & Multi-Messenger Astronomy|Life & Death of Stars","Northwestern Press",Science +8423,"Exotic stars enable scientists to tune into the hum of a cosmic symphony",06/29/2023,https://ciera.northwestern.edu/2023/06/29/exotic-stars-enable-scientists-to-tune-into-the-hum-of-a-cosmic-symphony/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +8425,"Unveiling the origins of merging black holes in galaxies like our own",06/29/2023,https://ciera.northwestern.edu/2023/06/29/unveiling-the-origins-of-merging-black-holes-in-galaxies-like-our-own/,"Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy","External Press|Northwestern Press",Science +8459,"REACH 2023 Sessions See Highest Attendance Yet",01/01/1970,https://ciera.northwestern.edu/?p=8459,,"CIERA Stories",Education|Outreach +8464,"Vicky Kalogera is thrilled by the extraordinary",07/13/2023,https://ciera.northwestern.edu/2023/07/13/vicky-kalogera-is-thrilled-by-the-extraordinary/,"Gravitational Waves & Multi-Messenger Astronomy","External Press",Education|Outreach +8468,"GravitySpy research paper wins major Spanish data science award",01/01/1970,https://ciera.northwestern.edu/?p=8468,"Gravitational Waves & Multi-Messenger Astronomy","CIERA Stories","Achievement|Data Science & Computing|Interdisciplinary" +8470,"Prof Allison Strom presents JWST research at 2nd Annual CIERA Astronomy Night Out",07/17/2023,https://ciera.northwestern.edu/2023/07/17/prof-allison-strom-presents-jwst-research-at-2nd-annual-ciera-astronomy-night-out/,"Galaxies & Cosmology","CIERA Stories",Education|Event|Outreach diff --git a/test_data/test_data_raw_only/raw_data/press_office.xlsx b/test_data/test_data_raw_only/raw_data/press_office.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..43e4c12365b17aa6574a4883f7a03817f170e8c7 GIT binary patch literal 14879 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 Union[pd.Series, pd.DataFrame]: + '''Count up stats, e.g. number of articles per year per category. + + Args: + df: The dataframe containing the selected data. + x_column: The column containing the year or other time bin value. + count_column: What to count up. + groupby_column: The category to group the data by, e.g. 'Research Topics'. + If not passed, then returns just the totals. + + Returns: + counts: The dataframe containing the counts per year per category + or + totals: The series containing the counts per year + ''' + + if groupby_column is None: + totals = df.pivot_table( + index=x_column, + values=count_column, + aggfunc='nunique', + ) + totals.fillna(value=0, inplace=True) + return totals + else: + counts = df.pivot_table( + index=x_column, + columns=groupby_column, + values=count_column, + aggfunc='nunique', + ) + counts.fillna(value=0, inplace=True) + return counts + + def sum( + self, + df: pd.DataFrame, + x_column: str, + weight_column: str, + groupby_column: str = None, + ) -> Union[pd.Series, pd.DataFrame]: + '''Sum up stats, e.g. dollar amount per year. + + Args: + df: The dataframe containing the selected data. + x_column: The column containing the year or other time bin value. + weight_column: What to count up. + groupby_column: The category to group the data by, e.g. 'Research Topics'. + If not passed, then returns just the totals. + + Returns: + sums: The dataframe containing the counts per year per category + or + totals: The series containing the counts per year + ''' + + # We keep one entry per ID and group. This is to avoid double-counting. + selected_for_sum_df = df.copy() + if groupby_column is None: + # For totals we only need one entry per ID. + #selected_for_sum_df.drop_duplicates(subset='id', keep='first', inplace=True) + totals = selected_for_sum_df.pivot_table( + values=weight_column, + index=x_column, + aggfunc='sum' + ) + totals = totals.fillna(0) + + return totals + else: + selected_for_sum_df['id_and_group'] = df['id'].astype(str) + df[groupby_column] + #selected_for_sum_df.drop_duplicates(subset='id_and_group', keep='first', inplace=True) + summed = selected_for_sum_df.pivot_table( + values=weight_column, + index=x_column, + columns=groupby_column, + aggfunc='sum' + ) + summed = summed.fillna(0) + + return summed \ No newline at end of file diff --git a/visit_dash_lib/dash_builder.py b/visit_dash_lib/dash_builder.py new file mode 100644 index 0000000..e8f14af --- /dev/null +++ b/visit_dash_lib/dash_builder.py @@ -0,0 +1,211 @@ +'''Main dashboard class. +''' +import importlib +import os +import types +from typing import Union +import yaml + +import pandas as pd +import streamlit as st + +from . import user_utils as default_user_utils +from . import settings, interface, data_handler, aggregator, data_viewer + +# We need to reload all the individual pieces if we want changes in them to propagate +for module in [settings, interface, data_handler, aggregator, data_viewer]: + importlib.reload(module) + +class DashBuilder: + '''Main class for constructing dashboards. + + Args: + config_fp: Path to the config file. + user_utils: User-customized module for data loading + and preprocessing. + ''' + + def __init__( + self, + config_fp: str, + user_utils: types.ModuleType = None, + ): + + if user_utils is None: + user_utils = default_user_utils + + self.config = self.load_config(config_fp) + self.settings = settings.Settings(self.config) + self.interface = interface.Interface(self.config, self.settings) + self.data_handler = data_handler.DataHandler(self.config, user_utils) + self.agg = aggregator.Aggregator(self.config) + self.data_viewer = data_viewer.DataViewer(self.config, self.settings) + + def load_config(self, config_fp: str) -> dict: + '''Get the config. This is done once per session. + The config directory is set as the working directory. + + Args: + config_fp: Filepath for the config file. + + Returns: + config: The config dictionary. + ''' + + config_dir, config_fn = os.path.split(config_fp) + + # Check if we're in the directory the script is in, + # which should also be the directory the config is in. + # If not, move into that directory + if os.getcwd() != config_dir: + os.chdir(config_dir) + + with open(config_fn, "r", encoding='UTF-8') as file: + config = yaml.load(file, Loader=yaml.FullLoader) + return config + + @st.cache_data + def prep_data(_self, config: dict) -> pd.DataFrame: + '''Load, clean, and preprocess the data. + + *Note*: calculations cannot depend on any values updated during + any cached functions (a.k.a. calculations cannot rely on any side effects) + because streamlit caches outputs only. + + This is the one time that the config can be altered during execution, + chosen as such to allow the user to modify the config on the fly, + as these two functions are user defined. + + For this and other functions wrapped by a streamlit caching function, + "self" must be replaced be preceeded by "_" to avoid streamlit + trying to cache self. + + Args: + config: The config dict. + + Returns: + preprocessed_df: The preprocessed data. + config: The config file. This will also be stored at self.config + + Side Effects: + self.data_handler.data: Updates data stored. + self.config: Possible updates to the stored config file. + ''' + msg = 'Prepping data...' + print(msg) + with st.spinner(msg): + data = {} + data['raw'], config = _self.data_handler.load_data(config) + data['cleaned'], config = _self.data_handler.clean_data(data['raw'], config) + data['preprocessed'], config = _self.data_handler.preprocess_data(data['cleaned'], config) + + return data, config + + @st.cache_data + def recategorize_data( + _self, + preprocessed_df: pd.DataFrame, + new_categories: dict = None, + recategorize: bool = True, + combine_single_categories: bool = False, + ) -> pd.DataFrame: + '''Recategorize the data, i.e. combine existing categories into new ones. + The end result is one category per article, so no articles are double-counted. + However, if the new categories are ill-defined they can contradict one another + and lead to inconsistencies. + + This is a wrapper for the same function in the data handler. + Part of the motivation for being a wrapper is to limit data caching to the builder. + + Args: + preprocessed_df: The dataframe containing the original data. + new_categories: The new categories to use. + recategorize: Whether to recategorize the data. Included for caching. + combine_single_categories: If True, instead of leaving + undefined singly-tagged entries alone, + group them all into an "Other" category. + + Returns: + recategorized: The dataframe containing the recategorized data. + One entry per article. + ''' + msg = 'Recategorizing data...' + print(msg) + with st.spinner(msg): + return _self.data_handler.recategorize_data( + preprocessed_df=preprocessed_df, + new_categories=new_categories, + recategorize=recategorize, + combine_single_categories=combine_single_categories, + ) + + @st.cache_data + def filter_data( + _self, + recategorized_df: pd.DataFrame, + categorical_filters: dict[str, list] = {}, + ) -> pd.DataFrame: + '''Filter what data shows up in the dashboard. + + Args: + recategorized_df: The dataframe containing the data. + text_filters (dict): Search fields for text. + categorical_filters (dict): How categories are filtered. + numerical_filters (dict): Ranges for numerical data filters + + Returns: + selected_df: The dataframe containing the selected data. + ''' + msg = 'Filtering data...' + print(msg) + with st.spinner(msg): + return _self.data_handler.filter_data( + recategorized_df=recategorized_df, + categorical_filters=categorical_filters, + ) + + @st.cache_data + def aggregate( + _self, + df: pd.DataFrame, + x_column: str, + y_column: str, + groupby_column: str = None, + aggregation_method: str = 'count', + ) -> Union[pd.Series, pd.DataFrame]: + '''Aggregate stats. + + Args: + df: The dataframe containing the selected data. + x_column: The column containing the year or other time bin value. + weight_column: What to count up. + groupby_column: The category to group the data by, e.g. 'Research Topics'. + If not passed, then returns just the totals. + aggregation_method: How to aggregate. + + Returns: + sums: The dataframe containing the counts per year per category + or + totals: The series containing the counts per year + ''' + + + msg = 'Aggregating...' + print(msg) + with st.spinner(msg): + if aggregation_method == 'count': + return _self.agg.count( + df=df, + x_column=x_column, + count_column=y_column, + groupby_column=groupby_column, + ) + elif aggregation_method == 'sum': + return _self.agg.sum( + df=df, + x_column=x_column, + weight_column=y_column, + groupby_column=groupby_column, + ) + else: + raise KeyError('Requested aggregation method "{}" is not available.'.format(aggregation_method)) \ No newline at end of file diff --git a/visit_dash_lib/data_handler.py b/visit_dash_lib/data_handler.py new file mode 100644 index 0000000..82cb701 --- /dev/null +++ b/visit_dash_lib/data_handler.py @@ -0,0 +1,253 @@ +'''Module for handling data: Loading, transforming, extracting, etc. +''' +import copy +import re +import types +from typing import Tuple + +import numpy as np +import pandas as pd + + +class DataHandler: + '''Class for handling data. + + Args: + config: The config dictionary. + user_utils: User-customized module for data loading + ''' + + def __init__(self, config: dict, user_utils: types.ModuleType): + self.config = config + self.user_utils = user_utils + + def load_data(self, config: dict) -> Tuple[pd.DataFrame, dict]: + '''Load the data using the stored config and user_utils. + + This is one of the only functions where we allow the config + to be modified. In general the on-the-fly settings are + kept elsewhere. + + Returns: + raw_df: The data. + config: The config file. This will also be stored at self.config + ''' + raw_df, config = self.user_utils.load_data(config) + + return raw_df, config + + def clean_data( + self, + raw_df: pd.DataFrame, + config: dict, + ) -> Tuple[pd.DataFrame, dict]: + '''Clean the data using the stored config and user_utils. + + This is one of the only functions where we allow the config + to be modified. In general the on-the-fly settings are + kept elsewhere. + + Args: + raw_df: The loaded data. + + Returns: + cleaned_df: The preprocessed data. + config: The config file. This will also be stored at self.config + ''' + return self.user_utils.clean_data( + raw_df, config + ) + + def preprocess_data( + self, + cleaned_df: pd.DataFrame, + config: dict, + ) -> Tuple[pd.DataFrame, dict]: + '''Preprocess the data using the stored config and user_utils. + This is one of the only functions where we allow the config + to be modified. In general the on-the-fly settings are + kept elsewhere. + + Args: + cleaned_df: The loaded data. + + Returns: + preprocessed_df: The preprocessed data. + config: The config file. This will also be stored at self.config + ''' + return self.user_utils.preprocess_data( + cleaned_df, config + ) + + def recategorize_data_per_grouping( + self, + preprocessed_df: pd.DataFrame, + groupby_column: dict, + new_cat_per_g: dict, + combine_single_categories: bool = False, + ) -> pd.Series: + '''The actual function doing most of the recategorizing. + + Args: + preprocessed_df: The dataframe containing the data to recategorize. + groupby_column: The category to group the data by, + e.g. 'Research Topics'. + new_categories_per_grouping: The new categories to use + for this specific grouping. + combine_single_categories: If True, instead of leaving + undefined singly-tagged entries alone, + group them all into an "Other" category. + + Returns: + recategorized_series: The new categories. + ''' + + # Get the formatted data used for the categories + dummies = pd.get_dummies(preprocessed_df[groupby_column]) + dummies['Title'] = preprocessed_df['Title'] + dummies_grouped = dummies.groupby('Title') + bools = dummies_grouped.sum() >= 1 + n_cats = bools.sum(axis='columns') + if bools.values.max() > 1: + raise ValueError( + 'Categorization cannot proceed---' + 'At least one category shows up multiple times' + 'for a single ID.' + ) + + # Setup return arr + base_categories = bools.columns + recat_dtype = np.array(new_cat_per_g.keys()).dtype + recategorized_series = np.full( + len(bools), fill_value='Other', dtype=recat_dtype, + ) + recategorized_series = pd.Series( + recategorized_series, index=bools.index, name=groupby_column + ) + + # Do all the single-category entries + # These will be overridden if any are a subset of a new category + if not combine_single_categories: + bools_singles = bools.loc[n_cats == 1] + for base_category in base_categories: + is_base_cat = bools_singles[base_category].values + base_cat_inds = bools_singles.index[is_base_cat] + recategorized_series.loc[base_cat_inds] = base_category + + # Loop through and do the recategorization + for category_key, category_definition in new_cat_per_g.items(): + # Replace the definition with something that can be evaluated + not_included_cats = [] + for base_category in base_categories: + if base_category not in category_definition: + not_included_cats.append(base_category) + continue + category_definition = category_definition.replace( + "'{}'".format(base_category), + "row['{}']".format(base_category) + ) + # Handle the not-included categories + if 'only' in category_definition: + category_definition = ( + '(' + category_definition + ') &' + '(not (' + ' | '.join( + ["row['{}']".format(cat) for cat in not_included_cats] + ) + '))' + ) + category_definition = category_definition.replace('only', '') + + is_new_cat = bools.apply( + lambda row: eval(category_definition), axis='columns' + ) + recategorized_series[is_new_cat] = category_key + + return recategorized_series + + def recategorize_data( + self, + preprocessed_df: pd.DataFrame, + new_categories: dict = None, + recategorize: bool = True, + combine_single_categories: bool = False, + ) -> pd.DataFrame: + '''Recategorize the data, i.e. combine existing categories into new ones. + The end result is one category per article, so no articles are double-counted. + However, if the new categories are ill-defined they can contradict one another + and lead to inconsistencies. + + Args: + preprocessed_df: The dataframe containing the original data. + new_categories: The new categories to use. + recategorize: Whether to recategorize the data. Included for caching. + combine_single_categories: If True, instead of leaving + undefined singly-tagged entries alone, + group them all into an "Other" category. + + Returns: + recategorized: The dataframe containing the recategorized data. + One entry per article. + ''' + + # We include the automatic return to help with data caching. + if not recategorize: + return preprocessed_df + + if new_categories is None: + new_categories = self.config.get('new_categories', 0) + + # Get the condensed data frame + # This is probably dropping stuff that shouldn't be dropped!!!!!!! + recategorized = preprocessed_df.drop_duplicates(subset='Title', keep='first') + recategorized = recategorized.set_index('Title') + + for groupby_column, new_categories_per_grouping in new_categories.items(): + + # Look for columns that are re-definitions of existing columns + # This regex looks for anything in front of anything else in brackets + search = re.findall(r'(.*?)\s\[(.+)\]', groupby_column) + if len(search) == 0: + new_column = groupby_column + elif len(search) == 1: + new_column, groupby_column = search[0] + else: + raise KeyError('New categories cannot have multiple sets of brackets.') + + + recategorized_groupby = self.recategorize_data_per_grouping( + preprocessed_df, + groupby_column, + copy.deepcopy(new_categories_per_grouping), + combine_single_categories + ) + + recategorized[new_column] = recategorized_groupby + + recategorized.reset_index(inplace=True) + + return recategorized + + def filter_data( + self, + recategorized_df: pd.DataFrame, + categorical_filters: dict[str, list] = {}, + ) -> pd.DataFrame: + '''Filter what data shows up in the dashboard. + + Args: + recategorized_df: The dataframe containing the data. + categorical_filters (dict): How categories are filtered. + + Returns: + selected_df: The dataframe containing the selected data. + ''' + + # Initialized + is_included = np.ones(len(recategorized_df), dtype=bool) + + # Categories filter + for cat_filter_col, selected_cats in categorical_filters.items(): + is_included = is_included & recategorized_df[cat_filter_col].isin(selected_cats) + + selected_df = recategorized_df.loc[is_included] + + return selected_df \ No newline at end of file diff --git a/visit_dash_lib/data_viewer.py b/visit_dash_lib/data_viewer.py new file mode 100644 index 0000000..2449d69 --- /dev/null +++ b/visit_dash_lib/data_viewer.py @@ -0,0 +1,423 @@ +'''Module for viewing data: Plotting, tables, etc. +''' +import copy +import re +import types + +from typing import Tuple + +import calendar +import numpy as np +import pandas as pd +import streamlit as st + +import matplotlib +import matplotlib.pyplot as plt +import matplotlib.figure + +import matplotlib.patheffects as patheffects +import seaborn as sns + +from .data_handler import DataHandler +from .settings import Settings + +class DataViewer: + '''Class for viewing data. + + Args: + config: The config dictionary. + data_handler: The data handler containing the relevant data. + ''' + + def __init__(self, config: dict, settings: Settings): + self.config = config + self.settings = settings + + def write(self, data, data_key: str=None, st_loc=st, columns: list[str]=None): + '''Show a specified dataframe. + + Args: + data: Data dict containing the data frames. + data_key: key to search the data handler for. + Defaults to providing a widget. + st_loc: Where to show the data. + columns: Columns to show. Defaults to all. + ''' + + if data_key is None: + data_key = st_loc.radio( + 'View what data?', + options=data.keys(), + horizontal=True, + ) + + if data_key not in data: + st.write('{} not found in data'.format(data_key)) + return + + shown_df = data[data_key] + if columns is not None: + shown_df = shown_df[columns] + + st.write(data[data_key]) + + def lineplot( + self, + df: pd.DataFrame, + month_reindex: list[int] = None, + year_reindex: list[int] = None, + totals: pd.Series = None, + categories: list[str] = None, + cumulative: bool = False, + x_label: str = None, + y_label: str = None, + fig_width: float = plt.rcParams['figure.figsize'][0] * 2, + fig_height: float = plt.rcParams['figure.figsize'][1], + yscale: str = 'linear', + x_lim: Tuple[float, float] = None, + y_lim: Tuple[float, float] = None, + xtick_spacing: float = None, + ytick_spacing: float = None, + font_scale: float = 1., + linewidth: float = 2., + marker_size: float = 30., + category_colors: dict[str,str] = None, + font: str = 'sans serif', + seaborn_style: str = 'whitegrid', + include_legend: bool = True, + legend_x: float = 1., + legend_y: float = 1., + legend_ha: str = 'right', + legend_va: str = 'lower', + legend_scale: float = 1., + include_annotations: bool = False, + annotations_ha: str = 'left', + **kwargs + ) -> matplotlib.figure.Figure: + '''General-purpose matplotlib lineplot. + This function provides solid defaults with a lot of customization. + If you want more customization you should probably create your own + situation-dependent function. + + Args: + df: Dataframe to plot, formatted s.t. the x-values are the index, + the y-values are the values in the dataframe, + and each column is a different category to compare. + total: Total values (across all categories) to plot, if given. + categories: Categories to show. Defaults to all columns. + cumulative: If True, show cumulative quantities, not instantaneous. + x_label: Label for x axis. If not provided, not shown. + y_label: Label for y axis. If not provided, not shown. + fig_width: Figure width. + fig_height: Figure height. + yscale: Scale for axis, i.e. 'linear', 'log'. + x_lim: x-axis limits. + y_lim: y-axis limits. + xtick_spacing: Distance (in data units) between x ticks. + ytick_spacing: Distance (in data units) between y ticks. + font_scale: Fonts are multiplied by this number (keeping relative size). + linewidth: Line thickness. + marker_size: Marker size. + category_colors: Colors to use for the different categories. + Defaults to using the seaborn color palette. + seaborn_style: Seaborn style to use. + include_legend: Whether to add a legend or not. + legend_x: Legend x location (axis units). + legend_y: Legend y location (axis units). + legend_loc: Legend alignment. + legend_scale: The legend size is multiplied by this number. + include_annotations: Whether to annotate the individual lines + with the category names. + annotation_ha: Horizontal alignment for the annotations. + + Returns: + fig: The figure containing the plot. + ''' + #df.index = df.index + 1 + + # Modify data if cumulative + if cumulative: + df = df.cumsum(axis='rows') + if totals is not None: + totals = totals.cumsum() + + # Set defaults + xs = df.index + + if categories is None: + categories = df.columns + if category_colors is None: + color_palette = sns.color_palette(n_colors=len(categories)) + category_colors = { key: color_palette[i] for i, key in enumerate(categories) } + + sns.set(font=font, style=seaborn_style) + plot_context = sns.plotting_context("notebook") + + fig = plt.figure(figsize=(fig_width, fig_height)) + ax = plt.gca() + + is_empty = True + for cols in df.columns: + if sum(list(df[cols])) != 0: + is_empty = False + break + + if not is_empty: + if df.index.name == 'Reindexed Month': + plt.xticks(xs, [calendar.month_abbr[month_reindex[i-1]] for i in xs]) + elif df.index.name == 'Reindexed Year': + plt.xticks(xs, year_reindex) + for j, category_j in enumerate(categories): + + ys = df[category_j] + + ax.plot( + xs, + ys, + linewidth = linewidth, + alpha = 0.5, + zorder = 2, + color = category_colors[category_j], + ) + ax.scatter( + xs, + ys, + label = category_j, + zorder = 2, + color = category_colors[category_j], + s = marker_size, + ) + + # Add labels + if include_annotations: + label_y = ys.iloc[-1] + + text = ax.annotate( + text = category_j, + xy = (1, label_y), + xycoords = matplotlib.transforms.blended_transform_factory(ax.transAxes, ax.transData), + xytext = (-5 + 10 * (annotations_ha == 'left'), 0), + va = 'center', + ha = annotations_ha, + textcoords = 'offset points', + ) + text.set_path_effects([ + patheffects.Stroke(linewidth=2.5, foreground='w'), + patheffects.Normal(), + ]) + + if totals is not None: + ax.plot( + xs, + totals, + linewidth = linewidth, + alpha = 0.5, + color = 'k', + zorder = 1, + ) + ax.scatter( + xs, + totals, + label = 'Total', + color = 'k', + zorder = 1, + s = marker_size, + ) + + ax.set_yscale(yscale) + + # Limits + if x_lim is None: + x_lim = ax.get_xlim() + else: + ax.set_xlim(x_lim) + if y_lim is None: + y_lim = ax.get_ylim() + else: + ax.set_ylim(y_lim) + + # Ticks + if xtick_spacing is None: + ax.set_xticks(xs.astype(int)) + else: + count_ticks = np.arange(x_lim[0], x_lim[1], xtick_spacing) + ax.set_xticks(count_ticks) + if ytick_spacing is not None: + count_ticks = np.arange(y_lim[0], y_lim[1], ytick_spacing) + ax.set_yticks(count_ticks) + + if include_legend: + l = ax.legend( + bbox_to_anchor = (legend_x, legend_y), + loc = '{} {}'.format(legend_va, legend_ha), + framealpha = 1., + fontsize = plot_context['legend.fontsize'] * legend_scale, + ncol = len(categories) // 4 + 1 + ) + + # Labels, inc. size + if x_label is not None: + ax.set_xlabel(x_label, fontsize=plot_context['axes.labelsize'] * font_scale) + if y_label is not None: + ax.set_ylabel(y_label, fontsize=plot_context['axes.labelsize'] * font_scale) + ax.tick_params(labelsize=plot_context['xtick.labelsize'] * font_scale) + + # Show + st.write(fig) + + return fig + + def stackplot( + self, + df: pd.DataFrame, + totals: pd.Series = None, + categories: list[str] = None, + cumulative: bool = False, + x_label: str = None, + y_label: str = None, + fig_width: float = plt.rcParams['figure.figsize'][0] * 2, + fig_height: float = plt.rcParams['figure.figsize'][1], + x_lim: Tuple[float, float] = None, + y_lim: Tuple[float, float] = (0,1), + xtick_spacing: float = None, + ytick_spacing: float = None, + font_scale: float = 1., + category_colors: dict[str,str] = None, + font: str = 'sans serif', + seaborn_style: str = 'whitegrid', + include_legend: bool = True, + legend_x: float = 1., + legend_y: float = 1., + legend_ha: str = 'right', + legend_va: str = 'lower', + legend_scale: float = 1., + include_annotations: bool = False, + annotations_ha: str = 'left', + ): + '''Function to plot the relative contribution of the categories. + + Args: + df: Dataframe to plot. + totals: Total values to plot. Currently unused. + categories: Categories to compare. + cumulative: Plot the cumulative values? + x_label: X-axis label. + y_label: Y-axis label. + fig_width: Figure width. + fig_height: Figure height. + x_lim: X-axis limits. + y_lim: Y-axis limits. + xtick_spacing: Spacing between x ticks in data units. + ytick_spacing: Spacing between y ticks in data units. + font_scale: Scale the font size by this value. + category_colors: What colors to use for different categories? + font: What font to use? + seaborn_style: What seaborn style to use? + include_legend: Include a legend? + legend_x: Legend x location. + legend_y: Legend y location. + legend_ha: Legend horizontal alignment. + legend_va: Legend vertical alignment. + legend_scale: Scale the size of the legend by this value. + include_annotations: Include per-category annotations? + annotations_ha: Horizontal alignment of the annotations. + + Returns: + fig (matplotlib.figure.Figure): The figure containing the plot. + ''' + + sns.set(font=font, style=seaborn_style) + plot_context = sns.plotting_context("notebook") + + if cumulative: + df = df.cumsum(axis='rows') + if totals is not None: + totals = totals.cumsum() + + # Set defaults + xs = df.index + if categories is None: + categories = df.columns + if category_colors is None: + color_palette = sns.color_palette(n_colors=len(categories)) + category_colors = { key: color_palette[i] for i, key in enumerate(categories) } + + # Get data + sum_total = df.sum(axis='columns') + fractions = df.mul(1./sum_total, axis='rows').fillna(value=0.) + + fig = plt.figure(figsize=(fig_width, fig_height)) + ax = plt.gca() + + stack = ax.stackplot( + xs, + fractions.values.transpose(), + linewidth = 0.3, + colors = [category_colors[category_j] for category_j in categories], + labels = categories, + ) + + # Add labels + if include_annotations: + for j, poly_j in enumerate(stack): + + # The y labels are centered in the middle of the last band + vertices = poly_j.get_paths()[0].vertices + xs = vertices[:,0] + end_vertices = vertices[:,1][xs == xs.max()] + label_y = 0.5 * (end_vertices.min() + end_vertices.max()) + + text = ax.annotate( + text = fractions.columns[j], + xy = (1, label_y), + xycoords = matplotlib.transforms.blended_transform_factory(ax.transAxes, ax.transData), + xytext = (-5 + 10 * (annotations_ha == 'left'), 0), + va = 'center', + ha = annotations_ha, + textcoords = 'offset points', + ) + text.set_path_effects([ + patheffects.Stroke(linewidth=2.5, foreground='w'), + patheffects.Normal(), + ]) + + # Limits + if x_lim is None: + x_lim = ax.get_xlim() + else: + ax.set_xlim(x_lim) + if y_lim is None: + y_lim = ax.get_ylim() + else: + ax.set_ylim(y_lim) + + # Ticks + if xtick_spacing is None: + ax.set_xticks(xs.astype(int)) + else: + count_ticks = np.arange(x_lim[0], x_lim[1], xtick_spacing) + ax.set_xticks(count_ticks) + if ytick_spacing is not None: + count_ticks = np.arange(y_lim[0], y_lim[1], ytick_spacing) + ax.set_yticks(count_ticks) + + if include_legend: + l = ax.legend( + bbox_to_anchor = (legend_x, legend_y), + loc = '{} {}'.format(legend_va, legend_ha), + framealpha = 1., + fontsize = plot_context['legend.fontsize'] * legend_scale, + ncol = len(categories) // 4 + 1 + ) + + # Labels, inc. size + if x_label is not None: + ax.set_xlabel(x_label, fontsize=plot_context['axes.labelsize'] * font_scale) + if y_label is not None: + ax.set_ylabel(y_label, fontsize=plot_context['axes.labelsize'] * font_scale) + ax.tick_params(labelsize=plot_context['xtick.labelsize'] * font_scale) + + # Show + st.write(fig) + + return fig \ No newline at end of file diff --git a/visit_dash_lib/events-live-backup-with-notes.csv b/visit_dash_lib/events-live-backup-with-notes.csv new file mode 100644 index 0000000..4f2e7da --- /dev/null +++ b/visit_dash_lib/events-live-backup-with-notes.csv @@ -0,0 +1,1608 @@ +Calendar Group,Event Type Tags,id,Title,Category,Research Topic,Date,Duration,Attendance,Location,Year,Notes +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Bennett,Science,,9/27/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Baganoff,Science,,10/11/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Lombardi,Science,,10/20/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brad Peterson,Science,,11/8/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ned Wright,Science,,11/28/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Adrienne Cool,Science,,12/5/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bill Watson,Science,,12/13/2001,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Grindlay,Science,,2/27/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andreas Zezas,Science,,3/4/2002,1,20,,2002, +CIERA - Special Seminars,Academic Seminars,,Andreas Zezas,Science,,3/4/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Armitage,Science,,3/8/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maha Ashour-Abdalla,Science,,3/14/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Derck Massa,Science,,3/14/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Donald Lubowich,Science,,3/28/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Douglas Heggie,Science,,4/11/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Merritt,Science,,4/19/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ronald Webbink,Science,,5/2/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Frank Marshall,Science,,5/9/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Duncan Lorimer,Science,,5/12/2002,1,20,,2002, +CIERA - Special Seminars,Academic Seminars,,Duncan Lorimer,Science,,5/13/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Renu Malhotra,Science,,5/17/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,5/20/2002,1,20,,2002, +CIERA - Special Seminars,Academic Seminars,,Marc Freitag,Science,,5/20/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Fregeau,Science,,5/29/2002,1,20,,2002, +CIERA - Special Seminars,Academic Seminars,,John Fregeau,Science,,5/29/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Roger Blandford,Science,,5/30/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Ford,Science,,5/30/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eugene Chiang,Science,,5/31/2002,1,20,,2002, +CIERA - Special Seminars,Academic Seminars,,Eric Ford,Science,,5/31/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Roger Dixon,Science,,6/6/2002,1,20,,2002, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Hughes,Science,,9/23/2002,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Scott Hughes,Science,,9/23/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,10/2/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Timbie,Science,,10/8/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eve Ostriker,Science,,10/22/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Patrick Slane,Science,,10/29/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,You-Hua Chu,Science,,11/12/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Matzner,Science,,11/19/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Muno,Science,,12/16/2002,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Mike Muno,Science,,12/16/2002,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Don Cox,Science,,1/14/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Philipp Podsiadlowski,Science,,1/23/2003,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Philipp Podsiadlowski,Science,,1/23/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander Heger,Science,,2/18/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ray Jayawardhana,Science,,2/25/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yousaf Butt,Science,,3/4/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Raga,Science,,3/11/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Smutko,Science,,4/15/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Wardle,Science,,4/17/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Ricker,Science,,4/22/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rebecca Bernstein,Science,,4/29/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Walter Lewin,Science,,5/8/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Pound,Science,,5/20/2003,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Milos Milosavljevic,Science,,6/9/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Milos Milosavljevic,Science,,6/10/2003,1,20,,2003, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew King,Science,,6/10/2003,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Andrew King,Science,,6/10/2003,1,20,,2003, +CIERA - Special Seminars,Academic Seminars,,Tom Maccarone,Science,,9/30/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Maccarone,Science,,10/1/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Gallagher,Science,,10/14/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joesph Weingertner,Science,,10/21/2003,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Marc Freitag,Science,,10/26/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amy Barger,Science,,10/28/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steven Federman,Science,,11/4/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,11/5/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pat Hartigan,Science,,11/11/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christopher Kochanek,Science,,11/13/2003,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Christopher Kochanek,Science,,11/13/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Eggleton,Science,,12/2/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christopher Deloye,Science,,12/4/2003,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Christopher Deloye,Science,,12/4/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Caty Pilachowski,Science,,12/9/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Asaf Pe'er,Science,,12/12/2003,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Asaf Pe'er,Science,,12/12/2003,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Lyne,Science,,1/20/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Walker,Science,,1/20/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ricardo Demarco,Science,,2/3/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dwarkadas,Science,,2/5/2004,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Vikram Dwarkadas,Science,,2/5/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thomas Pannuti,Science,,2/10/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrea Ghez,Science,,2/17/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carlo Graziani,Science,,2/24/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Prochaska,Science,,3/2/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Deepto Chakrabarty,Science,,3/13/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Tumlinson,Science,,3/30/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sarah Church,Science,,4/20/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luigi Stella,Science,,4/29/2004,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Luigi Stella,Science,,4/29/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Arieh Konigl,Science,,5/4/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kinwah Wu,Science,,5/5/2004,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Kinwah Wu,Science,,5/5/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Dodelson,Science,,5/11/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Durisen,Science,,5/18/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Feng Yuan,Science,,5/20/2004,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Feng Yuan,Science,,5/20/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Derek Fox,Science,,5/27/2004,1,20,,2004, +CIERA - Special Seminars,Academic Seminars,,Derek Fox,Science,,5/27/2004,1,20,,2004, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Avi Loeb,Science,,9/3/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Ford,Science,,9/23/2004,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Eric Ford,Science,,9/23/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrey Kravtsov,Science,,9/28/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Rich,Science,,10/5/2004,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Mike Muno,Science,,10/13/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nergis Mavalvala,Science,,10/21/2004,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Nergis Mavalvala,Science,,10/22/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris DePree,Science,,11/2/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sara Ellison,Science,,11/9/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Abel,Science,,11/12/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Muno,Science,,11/13/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ingrid Stairs,Science,,11/16/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Rupen,Science,,11/23/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Proga,Science,,11/30/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Geoff Bower,Science,,12/8/2004,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Geoff Bower,Science,,12/8/2004,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gianfranco Bertone,Science,,1/18/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shiho Kobayashi,Science,,1/19/2005,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Shiho Kobayashi,Science,,1/19/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bryan Gaensler,Science,,1/25/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bob Benjamin,Science,,2/3/2005,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Bob Benjamin,Science,,2/4/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Douglas Welch,Science,,2/8/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Crutcher,Science,,2/15/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dierdre Shoemaker,Science,,2/28/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Hamilton,Science,,3/8/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Holger Baumgardt,Science,,3/10/2005,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Holger Baumgardt,Science,,3/10/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rosalba Perna,Science,,3/15/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hannah Jang-Condell,Science,,3/29/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carlos Pena-Garay,Science,,4/6/2005,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Carlos Pena-Garay,Science,,4/6/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joseph Patterson,Science,,4/11/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Barry Barish,Science,,4/20/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amaya Moro-Martin,Science,,4/27/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Neufeld,Science,,5/3/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Ransom,Science,,5/9/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Benjamin McCall,Science,,5/17/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sera Markoff,Science,,5/24/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paulo Friere,Science,,5/26/2005,1,20,,2005, +CIERA - Special Seminars,Academic Seminars,,Paulo Freire,Science,,5/26/2005,1,20,,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rocky Kolb,Science,,5/31/2005,1,20,,2005, +CIERA - Conferences/Collab Meetings,Conferences,,MODEST-6,Science,Stellar Dynamics & Stellar Populations,8/29/2005,3,98,Evanston,2005, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Greg Sloan,Science,,9/22/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Martin Houde,Science,,9/27/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Kaaret,Science,,10/11/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Winn,Science,,10/14/2005,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Josh Winn,Science,,10/14/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Clem Pryke,Science,,10/18/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mordecai MacLow,Science,,11/1/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Knox Long,Science,,11/8/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carl Heiles,Science,,11/15/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vicky Kaspi,Science,,11/22/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Barbara Whitney,Science,,11/29/2005,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stratos Boutloukos,Science,,1/10/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Stratos Boutloukos,Science,,1/10/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tamara Bogdanovic,Science,,1/12/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Tamara Bogdanovic,Science,,1/12/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Gnedin,Science,,1/17/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shami Chatterjee,Science,,1/24/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michela Mapelli,Science,,1/27/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Michela Mapelli,Science,,1/27/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alycia Weinberger,Science,,1/31/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Truran,Science,,2/14/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kayhan Gultekin,Science,,2/16/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Kayhan Gultekin,Science,,2/17/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dave Strickland,Science,,2/21/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Krumholz,Science,,3/8/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Monica Valluri,Science,,3/16/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Monica Valluri,Science,,3/16/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Re'em Sari,Science,,3/29/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Re'em Sari,Science,,3/29/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Lovelace,Science,,4/11/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Wolszczan,Science,,4/18/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike A'Hearn,Science,,4/25/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Riccardo Giovanelli,Science,,5/2/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robert Millis,Science,,5/4/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Lazarian,Science,,5/9/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yanqin Wu,Science,,5/11/2006,1,25,,2006, +CIERA - Special Seminars,Academic Seminars,,Yanqin Wu,Science,,5/11/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Chung,Science,,5/16/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Youdin,Science,,5/23/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Darek Lis,Science,,5/30/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pau Amaro-Seoane,Science,,7/25/2006,1,25,,2006, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephan Meyer,Science,,9/26/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alberto Vecchio,Science,,9/30/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stanislav Boldyrev,Science,,10/3/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tiziana Di Matteo,Science,,10/10/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Eracleous,Science,,10/11/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stan Peale,Science,,10/23/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tal Alexander,Science,,10/25/2006,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Tal Alexander,Science,,10/25/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matthew Bailes,Science,,10/26/2006,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Matthew Bailes,Science,,10/26/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Snezana Stanimirovic,Science,,10/31/2006,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Loren Hoffman,Science,,11/2/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Loren Hoffman,Science,,11/3/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marta Volonteri,Science,,11/14/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ed Thommes,Science,,11/14/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jennifer Hoffman,Science,,11/15/2006,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Ed Thommes,Science,,11/15/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hiroshi Matsuo,Science,,11/28/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natasha Ivanova,Science,,12/10/2006,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Edgar,Science,,1/11/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Richard Edgar,Science,,1/12/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Avery Broderick,Science,,1/18/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Avery Broderick,Science,,1/18/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James de Buizer,Science,,1/20/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Marrone,Science,,1/23/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kristen Menou,Science,,1/30/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,2/1/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,2/1/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilya Mandel,Science,,2/9/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Ilya Mandel,Science,,2/9/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nuria Calvet,Science,,2/13/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shri Kulkarni,Science,,2/15/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Shri Kulkarni,Science,,2/15/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Seth Redfield,Science,,2/20/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jimmy Irwin,Science,,2/27/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vasiliki Pavlidou,Science,,3/1/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Vasiliki Pavlidou,Science,,3/1/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Becklin,Science,,3/5/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mario Juric,Science,,3/15/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Mario Juric,Science,,3/15/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leo Blitz,Science,,3/27/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kostas Tassis,Science,,3/29/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Kostas Tassis,Science,,3/29/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Charbonneau,Science,,4/4/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Beacom,Science,,4/17/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Debra Fischer,Science,,4/24/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gregory Sivakoff,Science,,4/26/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Gregory Sivakoff,Science,,4/26/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mary Putman,Science,,5/1/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,5/1/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Steffen,Science,,5/3/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Jason Steffen,Science,,5/3/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hiranya Peiris,Science,,5/8/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,5/14/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jonathan Tan,Science,,5/15/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephen Zepf,Science,,5/17/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Stephen Zepf,Science,,5/17/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Watson,Science,,5/22/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Owen,Science,,5/26/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Ben Owen,Science,,5/26/2007,1,25,,2007, +CIERA - Special Seminars,Academic Seminars,,Ashley Ruiter,Science,,5/27/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Ruiter,Science,,5/28/2007,1,25,,2007, +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems International Conference,Science,Exoplanets & the Solar System,6/25/2007,5,195,"Santorini, Greece",2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Wardle,Science,,7/31/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Milind Diwan,Science,,8/3/2007,1,25,,2007, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fritz Benedict,Science,,10/2/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Saul Rappaport,Science,,10/8/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Goldsmith,Science,,10/16/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilya Mandel,Science,,10/23/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Scoville,Science,,10/30/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sean Andrews,Science,,11/6/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Holger Baumgardt,Science,,11/12/2007,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Holger Baumgardt,Science,,11/12/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alicia Soderberg,Science,,11/13/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Athol Kemball,Science,,11/20/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Al Wootten,Science,,11/27/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Aaron Chou,Science,,12/4/2007,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Monica Valluri,Science,,1/15/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fabian Heitsch,Science,,1/22/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vasilis Paschalidis,Science,,1/24/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Vasilis Paschalidis,Science,,1/24/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gijs Roelofs,Science,,2/6/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Diana Valencia,Science,,2/14/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Diana Valencia,Science,,2/14/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Adams,Science,,2/19/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natalia Ivanova,Science,,2/25/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Natalia Ivanova,Science,,2/25/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Haffner,Science,,2/26/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Chuss,Science,,3/4/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steffen Knollmann,Science,,3/5/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Steffen Knollmann,Science,,3/5/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,3/11/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michele Trenti,Science,,3/19/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Michele Trenti,Science,,3/19/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brenda Matthews,Science,,4/8/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Patrick Brady,Science,,4/8/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniela Calzetti,Science,,4/15/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard White,Science,,4/22/2008,1,25,,2008, +CIERA - Special Seminars,Academic Seminars,,Daniel Fabrycky,Science,,4/23/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Massimo Marengo,Science,,5/6/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anthony Piro,Science,,5/13/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Manuela Campanelli,Science,,6/3/2008,1,25,,2008, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Haffner,Science,,9/23/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Jackson,Science,,9/30/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anuj Sarma,Science,,10/7/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ramesh Narayan,Science,,10/14/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Gladders,Science,,10/21/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Glenn Van de Ven,Science,,11/11/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brant Robertson,Science,,11/18/2008,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jim Braatz,Science,,1/13/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Miller-Jones,Science,,1/20/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Baker,Science,,2/10/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Tripp,Science,,2/17/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jungyeon Cho,Science,,2/24/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Grace Wolf-Chase,Science,,3/3/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ed Chambers,Science,,3/10/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Clem Pryke,Science,,4/7/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maxim Lyutikov,Science,,4/21/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,TJ Cox,Science,,4/28/2009,1,25,,2009, +CIERA - Special Seminars,Academic Seminars,,Benjamin Knispel,Science,,4/28/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Clements,Science,,5/5/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hsiao-Wen Chen,Science,,5/12/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ulysses Sofia,Science,,5/19/2009,1,25,,2009, +CIERA - Special Seminars,Academic Seminars,,Alberto Sesana,Science,,5/22/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lucy Fortson,Science,,6/2/2009,1,25,,2009, +CIERA - Special Seminars,Academic Seminars,,Sherry Suyu,Science,,6/12/2009,1,25,,2009, +CIERA - Special Seminars,Academic Seminars,,Natalie Hinkel,Science,,7/22/2009,1,25,,2009, +CIERA - Special Seminars,Academic Seminars,,John Fregeau,Science,,8/29/2009,1,25,,2009, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Enrico Ramirez-Ruiz,Science,,9/22/2009,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Smadar Naoz,Science,,9/23/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paolo Gondolo,Science,,9/29/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shirley Ho,Science,,10/6/2009,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Tim Linden,Science,,10/7/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bruce Balick,Science,,11/3/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Gaudi,Science,,11/10/2009,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Ann Hornschemeier,Science,,11/12/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Volker Bromm,Science,,11/17/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,11/24/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alessia Gualandris,Science,,11/30/2009,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zhi-Yun Li,Science,,12/8/2009,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Aaron Geller,Science,,1/11/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Koester,Science,,1/12/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Peter Anders,Science,,1/13/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eugene Chiang,Science,,1/17/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Enrico Ramirez-Ruiz,Science,,1/18/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Qizhou Zhang,Science,,1/26/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,B�lent Kiziltan,Science,,2/1/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,B�lent Kiziltan,Science,,2/1/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Charles Gammie,Science,,2/9/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,C. Barth Netterfield,Science,,2/23/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Sambaran Banerjee,Science,,2/23/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jay Strader,Science,,3/2/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Ravikumar Kopparapu,Science,,3/2/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luis Reyes,Science,,3/30/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sebastian Heinz,Science,,4/6/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena D'Onghia,Science,,4/13/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Lingzhen Zeng,Science,,4/14/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dawn Erb,Science,,4/20/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Rasia,Science,,4/27/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andy Fruchter,Science,,5/4/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Marta Volonteri,Science,,5/6/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fabian Heitsch,Science,,5/11/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Panayiotis Tzanavaris,Science,,5/13/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Haggi Perets,Science,,5/20/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,Charles Bailyn,Science,,5/20/2010,1,30,,2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dawrkadasl,Science,,6/1/2010,1,30,,2010, +CIERA - Special Seminars,Academic Seminars,,James Guillochon,Science,,6/11/2010,1,30,,2010, +CIERA - Conferences/Collab Meetings,Conferences,,"International Conference on Binaries - ""Binary Star Evolution: Mass Loss, Accretion and Mergers""",Science,Life and Death of Stars,6/22/2010,4,107,"Mykonos, Greece",2010, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Moshe Elitzur,Science,,9/25/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Goldreich,Science,,10/5/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marusa Bradac,Science,,10/12/2010,1,30,,2011, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 2nd Annual Public Lecture by Dr. Maria Zuber, ""The Warped Side of our Universe: From the Big Bang to Black Holes and Gravitational Waves""",Outreach,Black Holes & Dead Stars,10/18/2010,1,,Fisk Hall,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kip Thorne,Science,,10/18/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luis Ho,Science,,10/26/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steve Kawaler,Science,,11/2/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Pierpaoli,Science,,11/9/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Martini,Science,,11/16/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Emily Rauscher,Science,,11/23/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robyn Sanderson,Science,,11/30/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Fabrycky,Science,,12/7/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Martin Elvis,Science,,12/14/2010,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Chang,Science,,1/14/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Doug Clowe,Science,,1/18/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Johnathan Mitchell,Science,,1/25/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brett Lehmer,Science,,1/31/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Dame,Science,,2/8/2011,1,30,,2011, +CIERA - Special Seminars,Academic Seminars,,Tom Dame,Science,,2/8/2011,1,30,,2011, +CIERA - Special Seminars,Academic Seminars,,Elizabeth Hicks,Science,,2/11/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Herbst,Science,,2/15/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marco Fatuzzo,Science,,2/22/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,,3/1/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nathan Kaib,Science,,3/8/2011,1,30,,2011, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Edward Seidel: ""The Data and Compute-Driven Transformation of Modern Science""",Data Science & Computing|Science|Interdisciplinary,Other,3/10/2011,1,50,L211,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marcel Agueros,Science,,3/29/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elizabeth Blanton,Science,,4/12/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Kaplan,Science,,4/19/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nico Yunes,Science,,4/26/2011,1,30,,2011, +CIERA - Special Seminars,Academic Seminars,,Laura Blecha,Science,,4/27/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Takeshi Oka,Science,,5/3/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dong Lai,Science,,5/10/2011,1,30,,2011, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Jim Kasting: ""How to Find a Habitable Planet""",Science|Interdisciplinary,Exoplanets & the Solar System,5/16/2011,1,50,Ryan Auditorium,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ellen Zweibel,Science,,5/24/2011,1,30,,2011, +CIERA - Special Seminars,Academic Seminars,,Keren Sharon,Science,,5/26/2011,1,30,,2011, +CIERA - Special Seminars,Academic Seminars,,Duncan Forgan,Science,,6/2/2011,1,30,,2011, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Boaz Katz,Science,,6/6/2011,1,30,,2011, +CIERA - Conferences/Collab Meetings,Conferences | Future Leaders,,CIERA's Inaugural Conference: The Future of Astronomy; Fellows at the Frontiers of Science,Interdisciplinary|Science,Other,8/31/2011,4,100,CIERA,2011, +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems II International Conference,Science,Exoplanets & the Solar System,9/11/2011,7,328,"Moran, Wyoming",2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Hooper,Science,,9/20/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eliot Quataert,Science,,9/27/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Cornelia Lang,Science,,10/4/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Susmita Chakravorty,Science,,10/6/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mitchell C. Begelman,Science,,10/11/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Mitchell C. Begelman,Science,,10/11/2011,1,30,,2012, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Ray Jayawardhana: ""Characterizing Exoplanets""",Science|Interdisciplinary,Exoplanets & the Solar System,10/18/2011,1,50,L211,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Moeckel,Science,,10/25/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Snezana Prodan,Science,,10/26/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Phillip Zukin,Science,,10/28/2011,1,30,,2012, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 3rd Annual Public Lecture, Dr. Robert Kirshner - ""Dark Energy and the Accelerating Universe: Einstein's Blunder Undone""",Outreach|Science,Galaxies & Cosmology,11/1/2011,1,,Tech - Ryan Auditorium,2012, +CIERA - Special Seminars,Academic Seminars,,Manjari Bagchi,Science,,11/3/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matija Cuk,Science,,11/8/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Rich Plotkin,Science,,11/14/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ian Dobbs-Dixon,Science,,11/15/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Ann-Marie Madigan,Science,,11/17/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Adrienne Cool,Science,,11/21/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Julie McEnery,Science,,11/22/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Hedman,Science,,11/29/2011,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Eva Ntormousi,Science,,11/29/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brad Cenko,Science,,12/6/2011,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thiem Hoang,Science,,1/17/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Junfeng Wang,Science,,1/17/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Diana Valencia,Science,,1/26/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Kristen Menou,Science,,1/26/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ted von Hippel,Science,,2/7/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Ben Lackey,Science,,2/9/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Chris Wegg,Science,,2/9/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Claire Max,Science,,2/14/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Craig Heinke,Science,,3/1/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Craig Heinke,Science,,3/1/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ranga-Ram Chary,Science,,3/6/2012,1,30,,2012, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Cecilia R. Aragon, University of Washington, Seattle, WA +Surfing the Data Tsunami: Computing, Astrophysics, and eScience",Interdisciplinary|Data Science & Computing,Other,3/13/2012,1,50,M345,2012, +CIERA - Special Seminars,Academic Seminars,,Hannah Jang-Condell,Science,,3/15/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Darek Lis,Science,,3/26/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Casey Lisse,Science,,3/29/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Philip Marcus,Science,,4/17/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Tyson Littenberg,Science,,4/18/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sam Finn,Science,,4/25/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Nikta Amiri,Science,,4/26/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Adams,Science,,5/1/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Margaret Hanson,Science,,5/8/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tamara Rogers,Science,,5/15/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Jeff Andrews,Science,,5/16/2012,1,30,,2012, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Don Figer, Rochester Institute of Technology +Single-photon Array Detectors",Interdisciplinary|Science,Other,5/22/2012,1,50,G21,2012, +CIERA - Special Seminars,Academic Seminars,,Jeremy Sepinsky,Science,,5/23/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Simona Vegetti,Science,,5/29/2012,1,30,,2012, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bill Cotton,Science,,6/5/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Mark Wardle,Science,,6/21/2012,1,30,,2012, +CIERA - Special Seminars,Academic Seminars,,Richard de Grijs,Science,,9/14/2012,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gordon Richards,Science,,9/25/2012,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brett Gladman,Science,,10/2/2012,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Bekki Dawson,Science,,10/4/2012,1,20,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ethan Vishniac,Science,,10/9/2012,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sean T. McWilliams,Science,,10/11/2012,1,20,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ali Vanderveld,Science,,10/16/2012,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sara Ellison,Science,,10/23/2012,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tim Morton,Science,,10/25/2012,1,20,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fausto Cattaneo,Science,,10/30/2012,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jeremy Goodman,Science,,11/6/2012,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tim Linden,Science,,11/8/2012,1,20,,2013, +CIERA - Special Seminars,Academic Seminars,,Belinda Wilkes,Science,,11/12/2012,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jon Jenkins,Science,,11/13/2012,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jill P. Naiman,Science,,11/14/2012,1,20,,2013, +CIERA - Special Seminars,Academic Seminars,,John W. Hewitt,Science,,11/26/2012,1,30,,2013, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Alyssa Goodman, Harvard University The Close Relationship between Heart Disease and Sea Monsters (or, why good high-dimensional data visualization can solve almost any problem!)",Interdisciplinary|Data Science & Computing,Other,11/30/2012,1,50,F160,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Josh Faber,Science,,12/6/2012,1,20,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kaitlin Kratter,Science,,1/14/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Kaitlin Kratter,Science,,1/14/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Claude-Andr� Faucher-Gigu�re ,Science,,1/17/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Aristotle Socrates,Science,,1/22/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,John E. Vaillancourt,Science,,1/22/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Shane Davis,Science,,1/28/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Bence Kocsis,Science,,1/31/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leslie Rogers,Science,,2/4/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Leslie Rogers,Science,,2/4/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jacqueline Radigan,Science,,2/7/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Aaron Boley,Science,,2/7/2013,1,30,,2013, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 4th Annual Public Lecture, Dr. John M. Grunsfeld - ""Science@NASA""",Outreach|Interdisciplinary,Other,2/19/2013,1,,Tech - Ryan Auditorium,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amber Straughn,Science,,2/26/2013,1,30,,2013, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: David Hogg, New York University +Astronomy, Machine Learning, and Applied Math: The Astronomer's Theory of Everything",Interdisciplinary|Data Science & Computing,Other,3/5/2013,1,50,F160,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Carter,Science,,3/12/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Andrew Youdin,Science,,3/13/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christine Jones-Forman,Science,,3/19/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Andrew Brown,Science,,4/8/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Fabrycky,Science,,4/9/2013,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexandros Gianninas,Science,,4/11/2013,1,20,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Lacy,Science,,4/23/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Leo Singer,Science,,4/30/2013,1,30,,2013, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Fabio Antonini,Science,,4/30/2013,1,20,,2013, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Tim Slater, University of Wyoming Excellence in Higher Education Endowed Chair of Science Education +Are You Really Teaching If No One is Learning? Impact of Discipline-based Education Research",Interdisciplinary|Education,Other,5/6/2013,1,50,F160,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Enrico Vesperini,Science,,5/14/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Neil Cornish,Science,,5/16/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Dieter Hartmann,Science,,5/23/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Ciesla,Science,,5/28/2013,1,30,,2013, +CIERA - Special Seminars,Academic Seminars,,Jorg Weingrill,Science,,8/30/2013,1,30,,2013, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Neal Evans,Science,,10/1/2013,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Gallo,Science,,10/8/2013,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Konstantin Batygin,Science,,10/15/2013,1,40,,2014, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Benjamin Oppenheimer,Science,,10/17/2013,1,30,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rosalba Perna,Science,,10/22/2013,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Karen Yang,Science,,11/5/2013,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Chris Hayward,Science,,11/7/2013,1,35,,2014, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Mario Juric, Large Synoptic Survey Telescope Corporation +Large Synoptic Survey Telescope: Entering the Era of Petascale Optical Astronomy",Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,11/12/2013,1,50,F160,2014, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sijing Shen,Science,,11/15/2013,1,30,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Linda Strubbe,Science,,11/19/2013,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Natalie Gosnell,Science,,11/20/2013,1,35,,2014, +CIERA - Special Seminars,Academic Seminars,,Eric Gaidos,Science,,11/26/2013,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brian Metzger,Science,,12/3/2013,1,40,,2014, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Robyn Sanderson,Science,,12/13/2013,1,30,,2014, +CIERA - Special Seminars,Academic Seminars,,Eliot Quataert,Science,,1/8/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chuck Hailey,Science,,1/14/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jenny Greene,Science,,1/21/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pascale Garaud,Science,,1/27/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Simeon Bird,Science,,1/27/2014,1,35,,2014, +CIERA - Special Seminars,Academic Seminars,,Katherine Deck,Science,,1/28/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Dexter,Science,,2/11/2014,1,40,,2014, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Tony Tyson, University of California, Davis / Large Synoptic Survey Telescope +LSST and the Physics of the Dark Universe",Interdisciplinary|Science|Data Science & Computing,Other,2/17/2014,1,50,F160,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrey Kravtsov,Science,,2/25/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Xuening Bai,Science,,2/26/2014,1,35,,2014, +CIERA - Special Seminars,Academic Seminars,,Kat Barger,Science,,2/27/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Neal Dalal,Science,,3/4/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Quinn Konopacky,Science,,3/11/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Howard,Science,,3/18/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anil Seth,Science,,3/31/2014,1,40,,2014, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 5th Annual Public Lecture by Dr. Maria Zuber, introducing ""New Moon""",Outreach,Exoplanets & the Solar System,4/3/2014,1,,Tech - Ryan Auditorium,2014, +CIERA - Annual Public Lecture Series,Public Outreach,606532,CIERA Annual Public Lecture by John M. Grunsfeld,Outreach,,4/3/2014,1,,Tech Ryan Auditorium,2014, +CIERA - Special Seminars,Academic Seminars,,Albert Stebbins,Science,,4/3/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Ruhl,Science,,4/8/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Richard de Grijs,Science,,4/9/2014,1,35,,2014, +CIERA - Special Seminars,Academic Seminars,,Abigail Vieregg,Science,,4/21/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Holz,Science,,4/29/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Astrid Lamberts,Science,,5/1/2014,1,35,,2014, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Blakesley Burkhart,Science,,5/2/2014,1,30,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Line,Science,,5/6/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Alex Lazarian,Science,,5/6/2014,1,35,,2014, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Josh Bloom, University of California, Berkeley +Inference in Time Domain Astrophysics",Interdisciplinary|Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,5/7/2014,1,50,L211,2014, +CIERA - Special Seminars,Academic Seminars,,Eleni Kalfountzou,Science,,5/9/2014,1,35,,2014, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: David Kipping,Science,,5/9/2014,1,30,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alison Sills,Science,,5/13/2014,1,40,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Laura Lopez,Science,,5/20/2014,1,40,,2014, +CIERA - Special Seminars,Academic Seminars,,Sweta Shah,Science,,5/23/2014,1,35,,2014, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,FIRE (Feedback In Realistic Environments) Galaxy Formation Simulation Workshop,Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,7/25/2014,1,16,Tech,2014, +CIERA - Special Seminars,Academic Seminars,,Kostas Tassis,Science,,7/25/2014,1,35,,2014, +CIERA - Conferences/Collab Meetings,Conferences,,Conference on Next-Generation Telescopes,Interdisciplinary|Science,Other,8/22/2014,1,13,"CIERA, 8th Floor",2014, +CIERA - Special Seminars,Academic Seminars,,Tassos Fragos,Science,,8/22/2014,1,35,,2014, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike McCourt,Science,,9/23/2014,1,40,,2015, +CIERA - Special Public Events,Public Outreach|Education,,"CIERA helps host Boy Scounts and Families for ""NU STEM and Sports""",Outreach|Education,,9/29/2014,1,80,Dearborn Observatory,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew MacFadyen,Science,,10/6/2014,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ryan Foley,Science,,10/14/2014,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rachel Friesen,Science,,10/21/2014,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Rob Ferdman,Science,,10/23/2014,1,35,,2015, +CIERA - Special Seminars,Academic Seminars,,Laura Sampson,Science,,10/27/2014,1,35,,2015, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: James Stone, Princeton University The Role of Computation in Astrophysical Plasma Dynamics",Interdisciplinary|Data Science & Computing,Black Holes & Dead Stars,10/28/2014,1,50,F160,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Douglas Heggie,Science,,10/29/2014,1,30,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Gongjie Li,Science,,10/30/2014,1,30,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gwen Rudie,Science,,11/3/2014,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Ondrej Pejcha,Science,,11/3/2014,1,35,,2015, +CIERA - Special Public Events,Education,,CIERA participates in OSEP STEM Summit,Education|Interdisciplinary,,11/5/2014,1,260,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Saul Rappaport,Science,,11/10/2014,1,40,,2015, +CIERA - Special Public Events,Public Outreach|Education,,"CIERA Graduate Students run the FUSE workshop for ""Girls do Hack"" Event",Education|Outreach|Interdisciplinary,,11/15/2014,1,80,Adler Planetarium,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jacob Bean,Science,,11/18/2014,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Titos Matsakos,Science,,11/24/2014,1,35,,2015, +CIERA - Special Seminars,Academic Seminars,,Benedikt Diemer,Science,,11/30/2014,1,35,,2015, +CIERA - Special Seminars,Academic Seminars,,Konstantin Pavlovskii,Science,,12/10/2014,1,35,,2015, +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,Postdocs End-of-the-year Presentations,Achievement|Science|Professional Development,,12/15/2014,1,50,CIERA,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Doug Watson,Science,,1/6/2015,1,40,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jing Luan,Science,,1/15/2015,1,30,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alex Richings,Science,,1/15/2015,1,30,,2015, +CIERA - Conferences/Collab Meetings,Conferences,,2015 Aspen Winter Conference: Black Holes in Dense Star Clusters,Science|Interdisciplinary,Black Holes & Dead Stars,1/17/2015,6,91,Aspen Center for Physics,2015, +CIERA - Special Seminars,Academic Seminars,,Maria Cunningham,Science,,1/18/2015,1,35,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mariska Kriek,Science,,1/20/2015,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Frederick Davies,Science,,1/22/2015,1,35,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Monica Turner,Science,,1/22/2015,1,30,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jungyeon Cho,Science,,1/22/2015,1,30,,2015, +CIERA - Special Seminars,Academic Seminars,,Nicholas McConnell,Science,,1/28/2015,1,35,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Serena Repetto,Science,,1/29/2015,1,30,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joshua Peek,Science,,2/3/2015,1,40,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jeremy Webb,Science,,2/5/2015,1,30,,2015, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Ben McCall, University of Illinois at Urbana-Champaign +Astrochemistry: From H3+ to C60",Interdisciplinary|Science,Other,2/10/2015,1,50,F160,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lucianne Walkowicz,Science,,2/17/2015,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Reid,Science,,3/3/2015,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,James Guillochon,Science,,3/3/2015,1,35,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Edo Berger,Science,,3/5/2015,1,30,,2015, +CIERA - Special Public Events,Public Outreach|Education,,CIERA Postdocs lead 'Mission to Space' workshop during Expanding your Horizons STEM event,,,3/28/2015,1,200,CIERA,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marilena LoVerde,Science,,3/31/2015,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dawn Erb,Science,,4/7/2015,1,40,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Scott Tremaine,Science,,4/9/2015,1,30,,2015, +CIERA - Special Public Events,Public Outreach,,"Dr David Meyer presents ""Exploring the Universe with the Hubble Space Telescope"" for a ""Day with Northwestern""",Outreach,Galaxies & Cosmology,4/18/2015,1,250,1999 University Drive,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Geoffrey Vasil,Science,,4/21/2015,1,40,,2015, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dave Meyer, Northwestern University +Experiencing Hubble in the Classroom and Beyond",Interdisciplinary|Education,Other,4/24/2015,1,50,L211,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Muirhead,Science,,5/7/2015,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Jay Strader,Science,,5/8/2015,1,35,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: David Merritt,Science,,5/8/2015,1,30,,2015, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Pranab Ghosh,Science,,5/8/2015,1,30,,2015, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 6th Annual Public Lecture by Neil deGrasse Tyson ""This Just In: Latest Discoveries in the Universe""",Outreach|Interdisciplinary,Other,5/15/2015,1,500,Tech - Ryan Auditorium,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Edwin Bergin,Science,,5/19/2015,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Abel,Science,,5/26/2015,1,40,,2015, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Garth Illingworth,Science,,6/2/2015,1,40,,2015, +CIERA - Special Seminars,Academic Seminars,,Pablo Marchant,Science,,6/2/2015,1,35,,2015, +CIERA - Special Public Events,Public Outreach,,"CIERA Graduate Students take part in ""Summer of Science"" celebration",Outreach,,6/15/2015,1,,Adler Planetarium,2015, +CIERA - Special Public Events,Public Outreach|Education|Future Leaders,,"CIERA Graduates hosts highschool students for ""2015 Opportunities for the Future""",Education|Outreach|Interdisciplinary,,6/27/2015,1,30,Dearborn Observatory,2015, +CIERA - Special Public Events,Future Leaders,,CIERA hosts College of DuPage Astronomy Club for day visit,,,7/10/2015,1,9,CIERA,2015, +CIERA - Special Public Events,Public Outreach,,"Dr Kalogera meets with Office of Research Staff for ""NU Astronomy: Big Data, Telescope Innovation, and the Cosmos""",Outreach|Data Science & Computing|Interdisciplinary,,8/18/2015,1,40,CIERA,2015, +CIERA - Community Events,Future Leaders|Academic Seminars|Community Events,,"CIERA ""Seven Minutes of Science"" Symposium",Professional Development|Interdisciplinary|Data Science & Computing,,9/11/2015,1,12,Tech - Ryan Auditorium,2016, +CIERA - Special Seminars,Academic Seminars,,Adrian Hamers,Science,,9/16/2015,1,35,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zhaohuan Zhu,Science,,9/22/2015,1,40,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ryan Cooke,Science,,9/29/2015,1,40,,2016, +CIERA - Conferences/Collab Meetings,Conferences,,2015 Midwest Relativity Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/2/2015,1,100,"Louis Room, Norris University Center",2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amaury Triaud,Science,,10/6/2015,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,Andrew W. Smith,Science,,10/8/2015,1,35,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tony Piro,Science,,10/13/2015,1,40,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thayne Currie,Science,,10/20/2015,1,40,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tim Brandt,Science,,10/27/2015,1,40,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Blake Sherwin,Science,,10/29/2015,1,30,,2016, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 7th Annual Public Lecture by Dr Alan Stern: ""New Horizons""",Outreach|Science,Exoplanets & the Solar System,11/3/2015,1,275,Tech - Ryan Auditorium,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Raffaella Margutti,Science,,11/3/2015,1,40,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: John Chisholm,Science,,11/6/2015,1,30,,2016, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dennis Lehmkuhl, Caltech: What Einstein Really Thought About General Relativity",Interdisciplinary|Science,Gravitational Waves & Multi-Messenger Astronomy,11/10/2015,1,50,ITW Classroom,2016, +Development Events,Development/Strategic,,CIERA Dr. Paulsen and graduate student Katie Breivik meet congressmen Bob Dold to review CIERA programs and direction,Interdisciplinary|Outreach,,11/10/2015,1,4,Lake Forest at Elaway Farms,2016, +CIERA - Special Public Events,Public Outreach,,Graduate Student Katie Breivik leads stargazing activity for Adventure Guides,Education|Outreach,,11/10/2015,1,20,Lake Forest,2016, +CIERA - Special Seminars,Academic Seminars,,Tuguldur Sukhbold,Science,,11/11/2015,1,35,,2016, +CIERA - Special Public Events,Education,,"CIERA hosts Boy Scouts for 3rd annual ""NU Stem and Sports Day""",Education|Outreach,,11/12/2015,1,70,Dearborn Observatory,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Greg Sloan,Science,,11/13/2015,1,30,,2016, +CIERA - Special Seminars,Academic Seminars,,John Tobin,Science,,11/16/2015,1,35,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maryam Modjaz,Science,,11/17/2015,1,40,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Shuo Zhang,Science,,11/20/2015,1,30,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Katerina Chatziioannou,Science,,11/20/2015,1,30,,2016, +CIERA - Special Seminars,Academic Seminars,,Morgan MacLeod,Science,,11/23/2015,1,35,,2016, +CIERA - Special Public Events,Education,,Graduate Students speak at High School Women's STEM Event,Education,,11/25/2015,1,30,"Prospect High School, Mt. Prospect Il",2016, +CIERA - Special Public Events,Public Outreach,,2015 Total Lunar Eclipse Party,,,11/27/2015,1,1700,Segal Visitors Center,2016, +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems III International Conference,Science|Interdisciplinary,Exoplanets & the Solar System,11/29/2015,6,347,"Waikoloa Beach Marriott Resort & Spa, Hawaii",2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yuan Li,Science,,12/1/2015,1,40,,2016, +CIERA - Community Events,Future Leaders|Community Events,,AAAS Fellow Jeremy Ward visits CIERA to speak with Grad Students and Researchers,,,12/4/2015,1,,CIERA,2016, +CIERA - Special Seminars,Academic Seminars,,Tim Brandt,Science,,1/12/2016,1,35,,2016, +CIERA - Special Seminars,Academic Seminars,,Ian Stephens,Science,,1/14/2016,1,35,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michael Tremmel,Science,,1/15/2016,1,30,,2016, +CIERA - Special Seminars,Academic Seminars,,Jennifer Yee,Science,,1/20/2016,1,35,,2016, +CIERA - Special Seminars,Academic Seminars,,Greg Mosby,Science,,1/22/2016,1,35,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Betsy Mills,Science,,1/22/2016,1,30,,2016, +CIERA - Special Seminars,Academic Seminars,,Branimir Sesar,Science,,1/25/2016,1,35,,2016, +CIERA - Special Seminars,Academic Seminars,,Ryan Foley,Science,,1/28/2016,1,35,,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,1/29/2016,1,,Dearborn Observatory,2016, +CIERA - Special Seminars,Academic Seminars,,Raffaella Margutti,Science,,2/1/2016,1,35,,2016, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Olivier Guyon, University of Arizona, College of Optical Sciences +Imaging and Characterizing Habitable Exoplanets with Ground and Space-based Telescopes",Interdisciplinary|Science,Exoplanets & the Solar System,2/3/2016,1,50,Ford ITW,2016, +CIERA - Special Public Events,Education,,Graduate Student Speaker Series,Education|Outreach,,2/9/2016,1,70,Vernon Hills High School,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Bar-Or,Science,,2/16/2016,1,40,,2016, +CIERA - Special Public Events,Public Outreach,,"Dr Kalogera speaks on Chicago Network's ""Panel on Space""",Outreach,,2/22/2016,1,150,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leslie Looney,Science,,2/23/2016,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,Jamil A. Shariff,Science,,2/25/2016,1,35,,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,2/26/2016,1,,Dearborn Observatory,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Julie Hlavacek-Larrondo,Science,,2/29/2016,1,40,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tsevi Mazeh,Science,,3/8/2016,1,40,,2016, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap,Outreach,,3/10/2016,1,75,Smylie Brothers Brewing Co.,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Manos Chatzopoulos,Science,,3/11/2016,1,30,,2016, +CIERA - Special Public Events,Public Outreach,,Northwestern Science Cafe,Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/23/2016,1,80,Firehouse Grill,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,3/25/2016,1,,Dearborn Observatory,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Laura Chomiuk,Science,,3/29/2016,1,40,,2016, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Roger F. Malina, University of Texas at Dallas +How an Astrophysicist Came to Work in a School of Art and Technology: The Role of Hybrid Art-Science Practices Today",Interdisciplinary|Science,Other,4/7/2016,1,50,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alycia Weinberger,Science,,4/12/2016,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,Ethan Vishniac,Science,,4/13/2016,1,35,,2016, +CIERA - IDEAS,Future Leaders,,CIERA presents IDEAS program to future STEM leaders conference,Professional Development|Interdisciplinary|Data Science & Computing,Other,4/20/2016,1,400,"Capitol Hill, DC",2016, +Development Events,Development/Strategic|Future Leaders,,Graduate Student presentation for NSF site visit,Professional Development,,4/21/2016,1,25,Silverman Hall Atrium,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilse Cleeves,Science,,4/26/2016,1,40,,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,4/29/2016,1,,Dearborn Observatory,2016, +CIERA - Special Public Events,Public Outreach,,"CIERA's Aaron Geller presents ""When Art and Science meet"" at college of DuPage ""STEM-CON""",Education|Outreach|Interdisciplinary,Other,4/29/2016,1,1000,College of DuPage,2016, +CIERA - Special Public Events,Public Outreach|Education,,"Take your daughters and sons to work day info session: ""Ripples in Spacetime""",Education|Outreach,,4/30/2016,1,30,Norris University Center,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Mads Sorensen,Science,,5/1/2016,1,30,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matteo Cantiello,Science,,5/3/2016,1,40,,2016, +CIERA - Special Public Events,Public Outreach,,2016 Mercury Transit,,,5/9/2016,1,40,Dearborn Observatory,2016, +CIERA - Special Public Events,Public Outreach,,(En)Lightning Talks Chicago with Dr Kalogera,Outreach,,5/10/2016,1,200,Chicago History Museum,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Xavier Siemens,Science,,5/10/2016,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,B-G Andersson,Science,,5/12/2016,1,35,,2016, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jeff Andrews,Science,,5/15/2016,1,30,,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Jontof-Hutter,Science,,5/17/2016,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,Jonathan Stern,Science,,5/23/2016,1,35,,2016, +CIERA - Special Public Events,Public Outreach,,Solar System Symphony with Beinen School of Music,Interdisciplinary|Outreach,,5/24/2016,1,300,Pick-Staiger Concert Hall,2016, +CIERA - Special Public Events,Public Outreach,,Northwestern Science Cafe,Outreach|Science,,5/25/2016,1,70,Firehouse Grill,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,5/27/2016,1,,Dearborn Observatory,2016, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jonathan Trump,Science,,5/31/2016,1,40,,2016, +CIERA - Special Seminars,Academic Seminars,,Juan Diego Soler Pulido,Science,,6/2/2016,1,35,,2016, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Pre O2 Midwest Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,6/3/2016,1,20,CIERA,2016, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,NIAC Kick-Off Meeting,Science,,6/8/2016,1,12,CIERA,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,6/24/2016,1,,Dearborn Observatory,2016, +CIERA - REU,Future Leaders,,CIERA REU Career discussion panel,Professional Development,,7/13/2016,1,,Online,2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,7/29/2016,1,,Dearborn Observatory,2016, +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,LSSTC Data Science Fellowship Program,Data Science & Computing|Interdisciplinary|Professional Development,,8/1/2016,5,20,CIERA,2016, +CIERA - Special Seminars,Academic Seminars,,Evan Schneider,Science,,8/5/2016,1,35,,2016, +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,GNOME Data Analysis Bootcamp,Science|Interdisciplinary|Data Science & Computing,,8/16/2016,1,10,"Evanston, Il",2016, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,8/26/2016,1,,Dearborn Observatory,2016, +CIERA - Special Seminars,Academic Seminars,,Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,Science|Interdisciplinary,Other,9/1/2016,1,35,Norris University Center,2017, +CIERA - Special Public Events,Public Outreach|Education,,"4th Annual ""NU STEM and Sports"" outreach event",Education|Outreach,,9/12/2016,1,25,Dearborn Observatory,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Eliza Kempton,Science,,9/15/2016,1,30,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter K. G. Williams,Science,,9/20/2016,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Xuening Bai,Science,,9/27/2016,1,40,,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Cliff Johnson,Science,,9/29/2016,1,30,,2017, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,9/30/2016,1,,Dearborn Observatory,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sarah Wellons,Science,,9/30/2016,1,30,,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Matt Payne,Science,,10/6/2016,1,30,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natalia Storch,Science,,10/11/2016,1,40,,2017, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,10/20/2016,2,10,CIERA,2017, +Development Events,Development/Strategic,,Fall 2016 BoV Meeting,,,10/21/2016,1,9,Tech,2017, +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,Rapid-Fire Research Inauguration,Interdisciplinary|Science,Other,10/26/2016,1,10,CIERA ,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Eve Lee,Science,,10/27/2016,1,30,,2017, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,10/28/2016,1,,Dearborn Observatory,2017, +CIERA - Special Seminars,Academic Seminars,,Elad Steinberg,Science,,10/31/2016,1,35,,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jacob Simon,Science,,11/4/2016,1,30,,2017, +CIERA - Special Seminars,Academic Seminars,,Benjamin Montet,Science,,11/10/2016,1,35,,2017, +CIERA - Special Seminars,Academic Seminars,,Ondrej Pejcha,Science,,11/14/2016,1,35,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Wen-fai Fong,Science,,11/17/2016,1,40,,2017, +CIERA - Special Seminars,Academic Seminars,,Siyao Xu,Science,,11/17/2016,1,35,,2017, +CIERA - Special Seminars,Academic Seminars,,Wen-fai Fong,Science,,11/17/2016,1,35,,2017, +CIERA - Special Seminars,Academic Seminars,,Francois Foucart,Science,,11/21/2016,1,35,,2017, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,11/25/2016,1,,Dearborn Observatory,2017, +CIERA - Special Seminars,Academic Seminars,,Jennifer van Saders,Science,,11/28/2016,1,35,,2017, +CIERA - Special Seminars,Academic Seminars,,Sasha Tchekhovskoy,Science,,11/30/2016,1,35,,2017, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dave Reitze, LIGO Laboratory, Caltech +Colliding Black Holes & Convulsions in Space-time: The First Observations of Gravitational Waves by LIGO",Interdisciplinary|Science,Gravitational Waves & Multi-Messenger Astronomy,12/1/2016,1,150,L211,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Rasskazov,Science,,12/1/2016,1,30,,2017, +CIERA - Special Public Events,Public Outreach,,"Graduate Students participate in panel for Women in Stem club, Prospect High School",Outreach|Education,,12/8/2016,1,30,"Prospect High School, Mt. Prospect Il",2017, +CIERA - Special Seminars,Academic Seminars,,Rebecca McElroy,Science,,12/8/2016,1,35,,2017, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LIGO Collaborators Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,12/12/2016,1,8,CIERA,2017, +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,4th CIERA Research Jamboree,Interdisciplinary|Science,Other,12/14/2016,1,,Dearborn Observatory,2017, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,12/30/2016,1,,Dearborn Observatory,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robert De Rosa,Science,,1/10/2017,1,40,,2017, +CIERA - Special Public Events,Future Leaders,,CIERA participates in 229th AAS,Achievement|Interdisciplinary,,1/15/2017,1,9,"Grapevine, Texas",2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Zauderer,Science,,1/17/2017,1,40,,2017, +Development Events,Development/Strategic,,Winter 2017 BoV Meeting,,,1/18/2017,1,9,Tech,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tyler Groff,Science,,1/24/2017,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Smadar Naoz,Science,,1/31/2017,1,40,,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alex Lazarian,Science,,2/3/2017,1,30,,2017, +CIERA - Special Seminars,Academic Seminars,,Cullen Blake,Science,,2/6/2017,1,35,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jessica Werk,Science,,2/7/2017,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dustin Lang,Science,,2/14/2017,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nadia Zakamska,Science,,2/21/2017,1,40,,2017, +CIERA - Special Public Events,Education,,CIERA hosts Astronomy Day professional development,Education,,2/23/2017,1,12,CIERA,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michael Perryman,Science,,2/24/2017,1,30,,2017, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: N. Jeremy Kasdin, Princeton University +Finding and Characterizing Earth 2.0: An Engineering and Astronomy Partnership",Interdisciplinary|Science,,3/1/2017,1,80,F160,2017, +CIERA - Conferences/Collab Meetings,Conferences,,2017 Aspen Winter Conference: Formation and Dynamical Evolution of Exoplanets,Science,Exoplanets & the Solar System,3/26/2017,7,135,Aspen Center for Physics,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amy Bender,Science,,3/28/2017,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Norman Murray,Science,,4/4/2017,1,40,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jo Bovy,Science,,4/11/2017,1,40,,2017, +CIERA - Special Seminars,Academic Seminars,,Wei Zhu,Science,,4/21/2017,1,35,,2017, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Wei Zhu,Science,,4/21/2017,1,30,,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nicholas Stone,Science,,4/25/2017,1,40,,2017, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 8th Annual Public Lecture, Rainer Wiess: ""Beginning the Exploration of the Universe with Gravitational Waves""",Outreach|Science,Gravitational Waves & Multi-Messenger Astronomy,5/2/2017,1,,Tech Lecture Room 3,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Desika Narayanan,Science,,5/9/2017,1,40,,2017, +CIERA - Special Public Events,Public Outreach,,"CIERA multimedia performance: ""A Shout Across Time""",Outreach|Interdisciplinary,,5/15/2017,1,150,Nichols Concert Hall,2017, +CIERA - Special Seminars,Academic Seminars,,Stephen Zepf,Science,,5/15/2017,1,35,,2017, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dan Foreman-Mackey, University of Washington +How to Find a Transiting Exoplanet: Data-driven Discovery in the Astronomical Time Domain",Interdisciplinary|Science|Data Science & Computing,Exoplanets & the Solar System,5/16/2017,1,60,F160,2017, +CIERA - Special Public Events,Public Outreach,,"CIERA multimedia performance: ""Science Sonification""",Interdisciplinary|Outreach,,5/22/2017,1,75,Lutkin Hall,2017, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nanda Rea,Science,,5/23/2017,1,40,,2017, +CIERA - Conferences/Collab Meetings,Conferences | Future Leaders,,Supernovae: the LSST Revolution Workshop,Science|Interdisciplinary|Data Science & Computing,Stellar Dynamics & Stellar Populations | Life & Death of Stars,6/1/2017,1,60,Evanston,2017, +CIERA - Special Seminars,Academic Seminars,,Anja Feldmeier-Krause,Science,,6/6/2017,1,35,,2017, +Development Events,Development/Strategic,,Spring 2017 BoV Meeting,,,6/15/2017,1,9,Tech,2017, +CIERA - Special Public Events,Public Outreach,,Graduate Students participate in CTD Opportunities for the Future Family Conference,Education|Outreach,,6/24/2017,1,400,Dearborn Observatory,2017, +CIERA - REU,Future Leaders,,REU careers in Astronomy Panel,Professional Development,,7/31/2017,1,31,CIERA,2017, +CIERA - Astronomy on Tap,Public Outreach,,"""Solar Eclipse of the Heart""",Outreach,Other,8/14/2017,1,100,Begyle Brewing,2017, +CIERA - Special Public Events,,,2017 Total Solar Eclipse,,,8/21/2017,1,550,Tech,2017, +CIERA - Special Seminars,Academic Seminars,,Janet Chen,Science,,8/25/2017,1,35,,2017, +CIERA - Special Seminars,Academic Seminars,,"CIERA Special Seminar: Om Sharan Salafia, ""Where and When: How to Combine Information from the GW Signal and EM Counterpart Models to Inform and Optimize the EM Follow-up Strategy""",Science,Other,9/11/2017,1,35,CIERA,2018, +CIERA - Special Seminars,Academic Seminars,,Om Salafia,Science,,9/11/2017,1,35,,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Greg Taylor: ""Science at Low Frequencies with the Long Wavelength Array""",Science,Other,9/19/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,9/19/2017,1,25,F160,2018, +CIERA - Special Seminars,Academic Seminars,,Adrian Barker: Tidal Flows in Extrasolar Planets,Science,Exoplanets & the Solar System,9/20/2017,1,35,CIERA,2018, +CIERA - Special Seminars,Academic Seminars,,Suzanne Aigrain: Taming the Stochastic: How Gaussian Processes are Transforming Exoplanet Studies,Science|Data Science & Computing,Exoplanets & the Solar System,9/22/2017,1,35,CIERA,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Fabienne Bastien: Convection in Cool Stars, as Revealed through Stellar Brightness Variations",Science,Life and Death of Stars,9/26/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,9/26/2017,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Chelsea Harris: Modeling Supernova Interaction with Circumstellar Material and Phil Cowperthwaite: Deep Rapid Optical Follow-Up of Gravitational Wave Sources with the Dark Energy Camera,Science,Gravitational Waves & Multi-Messenger Astronomy,9/29/2017,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,9/29/2017,1,25,Dearborn Observatory,2018, +CIERA - Special Seminars,Academic Seminars,,Ian Christie: Modeling Stellar Wind Interactions,Science,Stellar Dynamics & Stellar Populations,10/3/2017,1,35,CIERA,2018, +Development Events,Development/Strategic,,Fall 2017 BoV Meeting,,,10/5/2017,1,9,Tech,2018, +Development Events,Development/Strategic,,Fall 2017 APL Dinner,,,10/5/2017,1,10,Tech,2018, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 9th Annual Public Lecture, Wendy Freedman - ""The Unexpected Universe: Astronomical Telescopes Continue to Reveal New Suprises""",Outreach|Interdisciplinary,Other,10/5/2017,1,300,Cahn Auditorium,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Paz Beniamini: Formation of Double Neutron Stars and Implications for Heavy Element Production,Science,Life and Death of Stars,10/6/2017,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Hanno Rein: ""Formation and stability of planetary systems""",Science,Exoplanets & the Solar System,10/10/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/10/2017,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Matthew Liska: GPU-based GRMHD Simulations of Tilted Black Hole Accretion Disks and Jets,Science|Data Science & Computing,Black Holes & Dead Stars,10/13/2017,1,30,Tech F160,2018, +CIERA - Special Seminars,Academic Seminars,,Payaswini Saikia: The Optical Fundamental Plane of Black Hole Activity,Science,Black Holes & Dead Stars,10/19/2017,1,35,CIERA,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Michael Tremmel: Dancing to ChaNGa: The Formation of Supermassive Black Hole Pairs in Cosmological Simulations and Kristen Garofali: Using High-Mass X-ray Binaries to Probe Massive Binary Evolution,Science,Black Holes & Dead Stars,10/20/2017,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Susan Clark: Magnetism and morphology in the interstellar medium,Science,Life and Death of Stars,10/24/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/24/2017,1,25,F160,2018, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,10/26/2017,1,6,CIERA,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Aleksey Generozov: Formation of X-ray binaries in the Galactic Center via tidal capture,Science,Other,10/27/2017,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,10/27/2017,1,25,Dearborn Observatory,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Frank van den Bosch: ""Dark Matter Substructure: Cosmological Treasure Trove or a Pandora's Box?""",Science,Galaxies & Cosmology,10/31/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/31/2017,1,25,F160,2018, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Greg Laughlin, Yale University: Poincar�'s Legacy: Predictions on Time Scales Ranging from Milliseconds to Billions of Years",Interdisciplinary|Science,Other,11/2/2017,1,75,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Pierre Christian,Science,,11/3/2017,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gregg Hallinan: Imaging All the Sky All the Time in Search of Radio Exoplanets,Science,Exoplanets & the Solar System,11/7/2017,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,11/7/2017,1,25,F160,2018, +CIERA - Special Seminars,Academic Seminars,,Adrian Hamers: Hot Jupiters Driven by High-eccentricity Migration in Globular Clusters,Science,Other,11/8/2017,1,35,CIERA,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vanessa Graber,Science,,11/9/2017,1,40,,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Dan Stevens: Precision Stellar and Planetary Astrophysics with TESS and Gaia,Science|Data Science & Computing,Other,11/17/2017,1,30,Tech F160,2018, +CIERA - Special Public Events,Public Outreach,,COSMOS IN CONCERT: Celestial Suite,Outreach|Interdisciplinary,Galaxies & Cosmology,11/18/2017,1,400,Pick-Staiger Concert Hall,2018, +CIERA - Special Seminars,Academic Seminars,,Benjamin Oppenheimer: The Circumgalactic Medium in EAGLE Simulations: Mass and Dynamics,Science|Data Science & Computing,Galaxies & Cosmology,11/21/2017,1,35,CIERA,2018, +CIERA - Special Public Events,Public Outreach,,"CIERA moderated panel: ""Peering into the Cosmic Maelstrom""",Science|Outreach,Other,11/28/2017,1,200,Tech Lecture Room 3,2018, +CIERA - Special Seminars,Academic Seminars,,Ben Ryan: General Relativistic Radiation Magnetohydrodynamic Simulations of Slowly Accreting Black Holes,Science,Black Holes & Dead Stars,11/30/2017,1,35,CIERA,2018, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dan Tamayo, University of Toronto's Centre for Planetary Sciences / Canadian Institute for Theoretical Astrophysics +A Million-fold Speedup in the Dynamical Characterization of Multi-planet Systems",Interdisciplinary|Science,Stellar Dynamics & Stellar Populations,12/1/2017,1,40,L211,2018, +CIERA - Special Seminars,Academic Seminars,,Drummond Fielding: A Multi-scale Portrait of the Circumgalactic Medium,Science,Galaxies & Cosmology,12/19/2017,1,35,CIERA,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,Other,1/16/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,1/16/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Damiano Caprioli: The Non-thermal Life of Supernova Remnants and Jonathan Stern,Science,Black Holes & Dead Stars,1/19/2018,1,30,Tech F160,2018, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Konstantin Batygin, California Institute of Technology: Planet Nine from Outer Space: Status Update",Interdisciplinary|Science,Other,1/26/2018,1,50,L211,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Konstantin Batygin and Kyle Kremer: Compact Binaries in Globular Clusters,Science,Stellar Dynamics & Stellar Populations,1/26/2018,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,1/26/2018,1,20,Dearborn Observatory,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maxwell Moe: How I Learned to Stop Worrying and Love Eclipsing Binaries,Science,Life and Death of Stars,1/30/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,1/30/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Sarah Wellons and Howard Chen: Simulating 3-D Biosignature Gases from Earth-like Planets in the James Webb Era,Science|Data Science & Computing|Interdisciplinary,Exoplanets & the Solar System,2/2/2018,1,30,Tech F160,2018, +CIERA - Special Public Events,Education,,CIERA Graduate Students Host Field Trip for Girls 4 Science,Education,,2/3/2018,1,95,Tech/Dearborn,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Heino Falcke: Imaging Black Holes now and in the future,Science,Black Holes & Dead Stars,2/6/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/6/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Kate Alexander: Radio Observations of Tidal Disruption Events and Jose Onorbe: What do we know about HI Reionization? New Constraints from the High-z Lyman-? Forest,Science,Other,2/9/2018,1,30,Tech F160,2018, +CIERA - Special Seminars,Academic Seminars,,David Chuss: The Cosmology Large Angular Scale Surveyor (CLASS),Science|Data Science & Computing,Galaxies & Cosmology,2/12/2018,1,35,CIERA,2018, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,HAWC+ Meeting,Science|Interdisciplinary,Life and Death of Stars,2/12/2018,1,3,,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rebekah (Bekki) Dawson: Origins of Super-Earths in Inner Solar Systems,Science,Exoplanets & the Solar System,2/13/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/13/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Andrea Antoni: The Evolution of Binaries in a Gaseous Medium: Three-Dimensional Simulations of Binary Bondi-Hoyle-Lyttleton Accretion and Pranab Ghosh: Super-Chandra Masses of Type Ia Supernova Progenitors,Science|Data Science & Computing|Interdisciplinary,Black Holes & Dead Stars,2/16/2018,1,30,Tech F160,2018, +Development Events,Development/Strategic,,Spring 2018 BoV Meeting,,,2/19/2018,1,15,Tech L440,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christina Williams: The emergence of quenched galaxies in the era of JWST,Science,Galaxies & Cosmology,2/20/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/20/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Pablo Marchant: Pulsational Pair-instability Supernovae in Very Close Binaries and Cliff Johnson: Measuring Star Formation Efficiency and Molecular Cloud Evolution in the Small Magellanic Cloud,Science,Stellar Dynamics & Stellar Populations|Life and Death of Stars,2/23/2018,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,2/23/2018,1,10,Dearborn Observatory,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Duncan Lorimer: Fast Radio Bursts -- Nature's Latest Cosmic Mystery,Science,Life and Death of Stars,2/27/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/27/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Michael Grudic: Forming Bound Star Clusters in Galaxies and Sasha Tchekhovskoy: When Pulsars Get Hungry,Science,Life and Death of Stars,3/2/2018,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Maria Drout: The Evolution, Influence, and Ultimate Fate of Massive Stars: Transient Phenomena and Stellar Astrophysics in the Era of Wide-Field Surveys",Science,Life and Death of Stars,3/6/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,3/6/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Ben Nelson: Quantifying the Evidence for an Exoplanet in Radial Velocity Data and Amy Reines,Science,Exoplanets & the Solar System,3/9/2018,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander (Sasha) Philippov: How do pulsars shine?,Science,Life and Death of Stars,3/13/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,3/13/2018,1,25,F160,2018, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Belinda Wilkes, Harvard-Smithsonian Center for Astrophysics +Revealing the Invisible Universe",Interdisciplinary|Science,Other,3/22/2018,1,75,F160,2018, +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,ALMA Community Day,Science|Data Science & Computing,Other,3/29/2018,1,8,Ford ITW,2018, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap,Outreach,Other,4/1/2018,1,60,"Begyle Brewing, 1800 W Cuyler Ave.",2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shami Chatterjee: The Deepening Mystery of Fast Radio Bursts,Science,Gravitational Waves & Multi-Messenger Astronomy,4/3/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/3/2018,1,25,F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dwarkadas: Triggered Star Formation inside the Shell of a Wolf�Rayet Bubble as the Origin of the Solar System,Science,Exoplanets & the Solar System,4/17/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/17/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Diego Munoz and Scott Coughlin,Science,,4/20/2018,1,30,Tech F160,2018, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,FIRE PI Meeting,Science,Galaxies & Cosmology,4/23/2018,1,8,,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Suvi Gezari: Hungry Black Holes,Science,Black Holes & Dead Stars,4/24/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/24/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Jeremy Rath: Understanding Multi-Planet System Chaos through Resonant Dynamics and Adam Dempsey: Creating the chaotic GJ876 Laplace resonance with smooth migration,Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,4/27/2018,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,4/27/2018,1,30,Dearborn Observatory,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rachel Somerville: Momentum-driven winds from radiatively efficient black hole accretion and their impact on galaxy properties,Science,Black Holes & Dead Stars,5/1/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/1/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Katie Breivik: Can we really discover black holes with Gaia? And Alex Gurvich: Firefly: a portable web-based 3d data visualization tool,Science|Data Science & Computing,Black Holes & Dead Stars,5/4/2018,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Justin Crepp: Ultra-precise Spectrographs that Operate at the Diffraction Limit,Science,Other,5/8/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/8/2018,1,25,F160,2018, +CIERA - Special Seminars,Academic Seminars,,Tarraneh Eftekhari,Science,Other,5/11/2018,1,35,CIERA,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Michael Zevin and Jonathan Stern,Science,,5/11/2018,1,30,Tech F160,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Jason Tumlinson: The Circumgalactic Medium: What It Is, and Why It Matters",Science,Galaxies & Cosmology,5/15/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/15/2018,1,25,F160,2018, +Development Events,Development/Strategic,,TCN Panel Event,,,5/17/2018,1,68,Guild Lounge,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Charlie Conroy: Unraveling Galaxy Formation Histories with Semi-Resolved Stellar Populations,Science,Stellar Dynamics & Stellar Populations,5/22/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/22/2018,1,25,F160,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Eve Chase and Brad Cenko,Science,,5/25/2018,1,30,Tech F160,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,5/25/2018,1,20,Dearborn Observatory,2018, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ramesh Narayan: Numerical Simulations of Black Hole Accretion,Science,Black Holes & Dead Stars,5/29/2018,1,40,CIERA,2018, +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/29/2018,1,25,F160,2018, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Hungry Hungry Galaxies!,Outreach,Galaxies & Cosmology,5/30/2018,1,60,Marz Community Brewing,2018, +CIERA - Theory Group Meetings,Academic Seminars,,Shi (Claire) Ye,Science,,6/1/2018,1,30,Tech F160,2018, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Brice M�nard, Johns Hopkins University - How Do You Want Your Data: Hot or Cold?",Interdisciplinary|Science|Data Science & Computing,Other,6/4/2018,1,70,L211,2018, +CIERA - Conferences/Collab Meetings,Conferences,,MODEST-18,Science,Stellar Dynamics & Stellar Populations,6/25/2018,5,100,"Santorini, Greece",2018, +CIERA - Special Seminars,Academic Seminars,,Laura Keating: The Intergalactic Medium at the End of Reionizati,Science,Galaxies & Cosmology,6/27/2018,1,35,,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,6/29/2018,1,50,Dearborn Observatory,2018, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Hungry Hungry Galaxies!,Outreach,Galaxies & Cosmology,7/1/2018,1,60,"Metropolitan Brewing, Chicago IL",2018, +CIERA - Conferences/Collab Meetings,Conferences,,12th International LISA Symposium,Science,Gravitational Waves & Multi-Messenger Astronomy,7/8/2018,6,240,"Westin Chicago, 320 North Dearborn St.",2018, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravitational Wave International Committee Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,7/8/2018,1,25,CIERA,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,7/27/2018,1,45,Dearborn Observatory,2018, +CIERA - Conferences/Collab Meetings,Conferences,,Circumgalactic Medium Workshop,Science,Galaxies & Cosmology,7/30/2018,5,50,"Scott Hall, 601 University Place",2018, +CIERA - Special Seminars,Future Leaders|Academic Seminars,,Seven Minutes of Scholarship,Science|Interdisciplinary|Professional Development,Other,8/1/2018,2,35,,2018, +CIERA - REU,Future Leaders,,REU Career panel discussion,Professional Development,,8/6/2018,1,13,Online,2018, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,8/31/2018,1,5,Dearborn Observatory,2018, +CIERA - Astronomy on Tap,Public Outreach,539022,Adler's 'Scopes in the City + Astronomy on Tap!,Outreach,Other,9/18/2018,1,,"Begyle Brewing, 1800 W Cuyler Ave.",2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Joint with EPS: Phil Nicholson: �Cassini's Grand Finale�",Interdisciplinary|Science,Other,9/27/2018,1,125,"L211, EPS 2nd Floor Atrium",2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Phil Nicholson: Using Waves in Saturn's Rings to Probe its Interior""""",Science,Gravitational Waves & Multi-Messenger Astronomy|Exoplanets & the Solar System,9/28/2018,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,527450,CIERA Astronomer Evenings,Outreach,,9/28/2018,1,,Dearborn Observatory,2019, +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,10/1/2018,1,100,Chicago IL,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rachel Bezanson: The Surprisingly Complex Lives of Massive Galaxies,Science,Galaxies & Cosmology,10/2/2018,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Peter Blanchard; Donghong Wu,Science,,10/5/2018,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Lorenzo Sironi: Fast and furious: magnetic reconnection in relativistic jets and black hole corona,Science,Black Holes & Dead Stars,10/9/2018,1,40,F160,2019, +CIERA - Annual Public Lecture Series,Public Outreach,538066,"CIERA Tenth Annual Public Lecture by Director Vicky Kalogera: The NU Astronomy of Stars, Black Holes, and Cosmic Explosions",Outreach,Black Holes & Dead Stars,10/11/2018,1,,Cahn Auditorium,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ekta Patel; Sean Ressler,Science,,10/12/2018,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Mansi Kasliwal: The Dynamic Infrared Sky,Science,Other,10/16/2018,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Andrew Chael; Luke Kelley,Science,,10/19/2018,1,30,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Deanne Coppejans: TBA,Science,,10/22/2018,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Brian O'Shea: Connecting the first stars in the universe to the Milky Way,Science,Galaxies & Cosmology,10/23/2018,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Kung-Yi Su, Emily Leiner",Science,,10/26/2018,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,527452,CIERA Astronomer Evenings,Outreach,,10/26/2018,1,,Dearborn Observatory,2019, +CIERA - Special Seminars,Academic Seminars,,Bertram Bitsch,Science,,10/29/2018,1,40,,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Ballard: The Grand Planetary Ensemble,Science|Interdisciplinary,Exoplanets & the Solar System,10/30/2018,1,40,F160,2019, +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,11/1/2018,1,100,Chicago IL,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Beth Willman: The Most Magnificent Map Ever Made""""",Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,11/2/2018,1,85,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Grant Williams; Griffin Hosseinzadeh,Science,,11/5/2018,1,15,F160,2019, +CIERA - Special Seminars,Academic Seminars,,Grant Williams,Science,,11/5/2018,1,40,,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jack Lissauer: Kepler's Multiple Planet Systems,Science,Exoplanets & the Solar System,11/6/2018,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Tingting Liu, Kerry Paterson",Science,,11/9/2018,1,30,F160,2019, +CIERA - Special Public Events,Public Outreach,,"""The Cosmos in a Heartbeat"" presented by Shane Larson",Achievement|Outreach,Gravitational Waves & Multi-Messenger Astronomy,11/9/2018,1,,Adler Planetarium,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,11/12/2018,1,15,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Patrick Sheehan; Nick Frontiere,Science,,11/16/2018,1,30,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Adithan Kathirgamaraju: Probing the Nature of Relativistic Outflows in Binary Mergers,Science,Other,11/26/2018,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Gurtina Besla: The Dynamics of the Local Group in the Era of Precision Astrometry,Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,11/27/2018,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Lucy McNeil, Erin Cox",Science,,11/30/2018,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,527454,CIERA Astronomer Evenings,Outreach,,11/30/2018,1,,Dearborn Observatory,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Rodrigo Fern�ndez: Mass ejection, compact objects, and electromagnetic transients",Science,Stellar Dynamics & Stellar Populations,12/4/2018,1,40,F160,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Post-Newtonian Dynamics in Stellar Clusters Mini-workshop,Science,Stellar Dynamics & Stellar Populations,12/5/2018,4,,Room 23,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Lake Michigan Exoplanet and Planet Formation Meeting,Science|Interdisciplinary,Exoplanets & the Solar System,12/7/2018,1,20,F285,2019, +CIERA - Special Seminars,Academic Seminars,,Special Seminar: Carl-Johan Haster: The Future of Gravitational Wave Inference - Problems to Solve Over the Next Few Years,Science,Gravitational Waves & Multi-Messenger Astronomy,12/14/2018,1,40,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Tanmoy Laskar: GRBs: The Radio Revolution""""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/14/2019,1,15,F160,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Katrin Heitmann: Exploring the Dark Universe,Interdisciplinary|Science|Data Science & Computing,Other,1/15/2019,1,100,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Prakriti Choudhury, Chris Pankow",Science,,1/18/2019,1,30,F160,2019, +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,"CIERA hosts ""Conference for Undegraduate Women in Physics (CUWiP)",Education|Professional Development,,1/18/2019,3,160,"Tech, Adler Planetarium, CIERA",2019, +CIERA - Special Public Events,,543300,Total Lunar Eclipse with CIERA Astronomers,,,1/20/2019,1,,Dearborn Observatory,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Andrew Hearin: Modeling Cosmological Structure Formation with Extreme-Scale Simulations,Science|Data Science & Computing|Interdisciplinary,Galaxies & Cosmology,1/22/2019,1,40,F160,2019, +CIERA - Special Public Events,Public Outreach|Education,,CIERA graduate students coordinate astronomy event for Y.O.U. program,Education|Outreach,Exoplanets & the Solar System,1/22/2019,1,15,Dearborn Observatory,2019, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Marco Berton: Rogue NLS1 - An AGN story""""",Science,Exoplanets & the Solar System,1/23/2019,1,40,F210,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Kate Alexander,Science,,1/25/2019,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,542876,CIERA Astronomer Evenings,Outreach,,1/25/2019,1,,Dearborn Observatory,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,1/28/2019,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ben Montet: Understanding the evolution of planetary systems and their host stars from the ground and from space,Science,Exoplanets & the Solar System,1/29/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jennifer Bergner: Tracing chemical complexity during star and planet formation""""",Science,Exoplanets & the Solar System,2/1/2019,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ana Bonaca: Uncovering the nature of dark matter with stellar streams in the Milky Way,Science,Galaxies & Cosmology,2/5/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Zach Hafen, Ian Christie",Science,,2/8/2019,1,30,F160,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LSC Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,2/8/2019,1,20,CIERA,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,2/11/2019,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Adam Leroy: New Views of the Cold Gas in Galaxies,Science,Stellar Dynamics & Stellar Populations,2/12/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jonathan Stern, Pablo Marchant",Science,,2/15/2019,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Erin Kara: X-ray reverberation in accreting black holes,Science,Black Holes & Dead Stars,2/19/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Marc Kamionkowsk,Science,,2/22/2019,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,542877,CIERA Astronomer Evenings,Outreach,,2/22/2019,1,,Dearborn Observatory,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,2/25/2019,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Yanqin Wu: A uniform population of planets,Science,Exoplanets & the Solar System,2/26/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Sarah Wellons, Alex Gurvich ",Science,,3/1/2019,1,30,F160,2019, +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,3/1/2019,1,100,Chicago IL,2019, +CIERA - Special Seminars,Academic Seminars,,IDEAS Program Information Session,Science|Interdisciplinary|Data Science & Computing,Other,3/5/2019,1,40,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sean Andrews: Observing Planet Formation,Science,Exoplanets & the Solar System|Other,3/5/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Adam Dempsey, Mario Spera",Science,,3/8/2019,1,30,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Antonella Palmese: Gravitational wave astrophysics and cosmology with DES galaxies""""",Science,Gravitational Waves & Multi-Messenger Astronomy,3/11/2019,1,15,F160,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Joint w/ ECE: Stefan Danilishin: Measuring Speed""""",Interdisciplinary|Science,Other,3/15/2019,1,30,CIERA,2019, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Sebastian Perez: Dust unveils the presence of a migrating mini-Neptune in a protoplanetary ring"" """,Science,Exoplanets & the Solar System,3/29/2019,1,40,F160,2019, +CIERA - Special Public Events,Public Outreach,,Lakota Stellar STEM weekend,Outreach,Other,3/30/2019,1,10,"Dearborn Observatory, CIERA",2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"EPS Seminar & CIERA Interdisciplinary Colloquium: Sean Raymond: Solar System formation in the context of extra-solar planets""""",Interdisciplinary|Science,Exoplanets & the Solar System,4/1/2019,1,40,F160,2019, +CIERA - Special Public Events,Public Outreach,,2019 Heilborn Lectures : Rainer Weiss,Outreach,Gravitational Waves & Multi-Messenger Astronomy,4/5/2019,1,,Tech - Ryan Auditorium,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,4/8/2019,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Vikram Ravi: Towards the Origins of Fast Radio Bursts""""",Science,Life and Death of Stars,4/9/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sarah Rugheimer,Science,,4/12/2019,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Simone Scaringi: One (disk) ring to rule them all: linking accretion from protostars to supermassive black holes ,Science,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,4/16/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Maxim Barkov, Farhad Yusef-Zadeh",Science,,4/19/2019,1,30,F160,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Charlie Telesco: Mid-IR Astronomy with the 10.4-m Gran Telescopio Canarias (GTC)""""",Science,Other,4/22/2019,1,15,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Abigail Stevens, Sukrit Ranjan",Science,,4/26/2019,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,542878,CIERA Astronomer Evenings,Outreach,,4/26/2019,1,,Dearborn Observatory,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Elisa Quintana: Exploring the Solar Neighborhood with NASA's TESS mission,Science|Data Science & Computing|Interdisciplinary,Exoplanets & the Solar System,4/30/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: David Spergel, Aprajita Hajela",Science,,5/3/2019,1,30,F160,2019, +CIERA - Special Seminars,Academic Seminars,,"Special Workshop: Randolf Klein: SOFIA Science and Capabilities: Cycle 8 Proposal Workshop""""",Science|Interdisciplinary,Other,5/6/2019,1,40,L250,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Randolf Klein: SOFIA: Recent Results and Upcoming Opportunities in Airborne Astronomy""""",Science,Other,5/6/2019,1,15,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Leo C. Stein: Testing Einstein with numerical relativity: theories beyond general relativity, and the precision frontier",Science,Gravitational Waves & Multi-Messenger Astronomy,5/7/2019,1,40,F160,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Erik Curiel: A Survey of Foundational Problems for Classical Black Holes and the Hawking Effect""""",Interdisciplinary|Science,Black Holes & Dead Stars,5/9/2019,1,50,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Fiona Harrison, Christopher Berry",Science,,5/10/2019,1,30,F160,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Scott Ransom: Wherefore Pulsars? The Computational Challenges and Physics Rewards of Filtering Needles from Haystacks""""",Interdisciplinary|Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,5/13/2019,1,40,F160,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Pulsar Workshop,Science,Life and Death of Stars | Black Holes & Dead Stars,5/13/2019,2,8,CIERA,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jay Strader: Compact Binaries and the Origin of Millisecond Pulsars,Science,Life and Death of Stars,5/14/2019,1,40,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Special Astro Seminar: Ryan Chornock: Optical Spectroscopy in the Era of Large Transient Surveys,Science,Life and Death of Stars,5/15/2019,1,40,F160,2019, +CIERA - Special Seminars,Academic Seminars,,Ryan Chornock,Science,,5/15/2019,1,40,,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jonathan Stern, Adriano Baldeschi",Science,,5/17/2019,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Nathan Smith: Light Echoes of Eta Carinae, Massive Star Mergers, and Pre-Supernova Eruptions",Science,Life and Death of Stars,5/21/2019,1,40,F160,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Petia Vlahovska, Pierre Gratia ",Science,,5/24/2019,1,30,F160,2019, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jim Fuller: Surprising Impacts of Gravity Waves,Science,Gravitational Waves & Multi-Messenger Astronomy,5/28/2019,1,40,F160,2019, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Dennis Schatz: Making Science Learning Lifelong, Lifewide and Lifedeep""""",Interdisciplinary|Education,Other,5/29/2019,1,50,LR 3,2019, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Dimitri Veras, Koushik Chatterjee",Science,,5/31/2019,1,30,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,542879,CIERA Astronomer Evenings ,Outreach,,5/31/2019,1,30,Dearborn Observatory,2019, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Anna Ho: The Landscape of Engine-Driven Explosions,Science,Other,6/10/2019,1,15,F160,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,BLAST-TNG pre-flight planning meeting,Interdisciplinary,Life and Death of Stars|Exoplanets & the Solar System,6/10/2019,5,30,Northwestern,2019, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Laura Fissel: Studying Star Formation from the Stratosphere""""",Science,Life and Death of Stars,6/11/2019,1,40,F160,2019, +CIERA - Astronomer Evenings,Public Outreach,542880,CIERA Astronomer Evenings,Outreach,,6/28/2019,1,,Dearborn Observatory,2019, +CIERA - Astronomer Evenings,Public Outreach,551979,Special CIERA Astronomer Evening: 50th Anniversary of the Apollo 11 Moon Landing,Outreach,,7/12/2019,1,75,Dearborn Observatory,2019, +CIERA - Astronomer Evenings,Public Outreach,542881,CIERA Astronomer Evening: 50th Anniversary of the Apollo 11 Moon Landing,Outreach,,7/26/2019,1,75,Dearborn Observatory,2019, +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,8/1/2019,1,100,Chicago IL,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,SOFIA-ALMA Ophiuchus Collaboration,Science,Life and Death of Stars,8/8/2019,1,6,CIERA,2019, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,HAWC+ Papers Meetings,,,8/12/2019,1,6,CIERA,2019, +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems IV,Science,Exoplanets & the Solar System,8/19/2019,5,585,"Harpa Center, Reykjavik",2019, +CIERA - Conferences/Collab Meetings,Conferences,,Hot-Wiring the Transient Universe VI,Science,Gravitational Waves & Multi-Messenger Astronomy,8/19/2019,4,93,Norris University Center,2019, +CIERA - Special Public Events,Public Outreach,551673,"Hotwired Public Lecture: Andrew J. Connolly: Streaming the Universe""""",Outreach,Life and Death of Stars,8/21/2019,1,90,Norris University Center,2019, +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap - ""Cosmic Explosions Across Space and Time""",Outreach,Galaxies & Cosmology,8/21/2019,1,70,Metropolitan Brewing,2019, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap - A Night of Ice and Fire,Outreach,Other,9/1/2019,1,50,"Begley Brewing, Chicago IL",2020, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Psylib Meeting,,,9/9/2019,2,10,CIERA,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emily Levesque: Red Supergiants: New Perspectives on Dying Stars,Science,Life and Death of Stars,9/24/2019,1,45,F160,2020, +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,2019 NSF Research Traineeship (NRT) Annual Meeting,Science|Interdisciplinary|Professional Development|Data Science & Computing,,9/25/2019,3,296,Norris University Center,2020, +CIERA - Astronomer Evenings,Public Outreach,542883,CIERA Astronomer Evenings,Outreach,,9/27/2019,1,25,Dearborn Observatory,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Kaew Samaporn Tinyanont & TBA,Science,,9/30/2019,1,20,924156,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ray Jayawardhana: Characterizing Exoplanets: From Hot Jupiters to Super-Earths,Science,Exoplanets & the Solar System,10/1/2019,1,45,F160,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ore Gottlieb,Science,,10/4/2019,1,35,924156,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Matt McQuinn: Welcome to the era of FRB �cosmology�,Science|Interdisciplinary,Galaxies & Cosmology,10/8/2019,1,45,F160,2020, +CIERA - Special Public Events,Future Leaders|Education,,STEM discussion panel @ lincoln high school,Outreach,,10/8/2019,1,90,Lincoln Park High School,2020, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Daniel Stark Galaxies in the Reionization Era: New Insight into Escape Fractions and Low Metallicity Massive Stars""""",Science,Stellar Dynamics & Stellar Populations,10/11/2019,1,35,924156,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Laura Blecha: Modeling the multi-messenger signatures of massive black hole evolution,Science,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,10/15/2019,1,45,F160,2020, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Evgeni Grishin Extreme Orbital Evolution of Few-Body systems: From the Solar System to Gravitational Waves""""",Science,Gravitational Waves & Multi-Messenger Astronomy|Exoplanets & the Solar System,10/18/2019,1,35,924156,2020, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Joe Bright Extreme outflows from the black hole X-ray binary MAXI J1820+070""""",Science,Black Holes & Dead Stars,10/18/2019,1,40,924156,2020, +CIERA - Annual Public Lecture Series,Public Outreach,544287,"CIERA Eleventh Annual Public Lecture by Dr. Priyamvada Natarajan: Cartography of the Cosmos: Mapping the Unseen""""",Outreach,Galaxies & Cosmology,10/24/2019,1,250,Cahn Auditorium,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Stephan,Science,,10/25/2019,1,35,924156,2020, +CIERA - Astronomer Evenings,Public Outreach,542884,CIERA Astronomer Evenings,Outreach,,10/25/2019,1,25,Dearborn Observatory,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Ashley Villar & Charles D Kilpatrick,Science,,10/28/2019,1,20,924156,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jennifer Marshall: The future of massively multiplexed spectroscopy: The Maunakea Spectroscopic Explorer,Science,Other,10/29/2019,1,45,F160,2020, +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,11/1/2019,1,100,Chicago IL,2020, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Arianna Renzini Mapping the Gravitational Wave Background�""""",Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,11/4/2019,1,40,924156,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Maria Petropoulou : Active Galactic Nuclei as high-energy neutrino factories ,Science,Galaxies & Cosmology,11/5/2019,1,45,7th Floor,2020, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Siddharth Soni Scattering noise in O3"" """,Science,Other,11/7/2019,1,40,924156,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ileyk El Mellah,Science,,11/8/2019,1,35,924156,2020, +CIERA - Astronomer Evenings,Public Outreach,553172,CIERA Astronomer Evening: A Celebration of NASA�s Space Program / Hidden Figures,Outreach,,11/8/2019,1,25,Dearborn Observatory,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Abigail Polin & Jane Huang,Science,,11/11/2019,1,20,,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Rasskazov,Science,,11/15/2019,1,35,924156,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,11/21/2019,1,,8040,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tiffany Lewis & Chad Bustard,Science,,11/22/2019,1,35,CIERA Caf�,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Ting Li & Matthew Digman,Science,,11/25/2019,1,20,7th Floor Conf. Rm,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jason Dexter: beyond the shadow,Science,Other,11/26/2019,1,45,7th Floor,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emmanuel Fonseca: Pulsar & FRB Astrophysics in the Era of CHIME,Science|Data Science & Computing,Black Holes & Dead Stars|Life and Death of Stars,12/3/2019,1,45,7th Floor,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,12/5/2019,1,,8040,2020, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Jeremy D. Schnittman: Life on Miller's Planet: The Habitability Zone Around Supermassive Black Holes""""",Interdisciplinary|Science,Exoplanets & the Solar System,12/10/2019,1,50,7th Floor Conf. Rm,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,12/19/2019,1,,8040,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,1/2/2020,1,,8040,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Smriti Vats & TBA,Science,,1/13/2020,1,20,7th Floor Conf. Rm,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rosanne Di Stefano: Mass Transfer within Hierarchical Triples: New Models for Progenitors of Gravitational Mergers and Type Ia Supernovae,Science,Gravitational Waves & Multi-Messenger Astronomy,1/14/2020,1,45,7th Floor,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Vigeland: Probing Massive and Supermassive Black Holes with Gravitational Waves,Science,Gravitational Waves & Multi-Messenger Astronomy|Black Holes & Dead Stars,1/21/2020,1,45,7th Floor,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial ,Professional Development|Data Science & Computing,,1/22/2020,1,,8054,2020, +CIERA - Community Events,Community Events,,CIERA New Year open-house,Interdisciplinary,,1/22/2020,1,100,CIERA 8th floor,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA & TBA ,Science,,1/27/2020,1,20,7th Floor Conf. Rm,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jackie Faherty: Visualizing a Billion Stars for Science and Education ,Science|Interdisciplinary|Education,Stellar Dynamics & Stellar Populations,1/28/2020,1,45,7th Floor,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michelle Vick,Science,,1/31/2020,1,35,CIERA Caf�,2020, +CIERA - Astronomer Evenings,Public Outreach,560313,CIERA Astronomer Evenings,Outreach,,1/31/2020,1,25,Dearborn Observatory,2020, +CIERA - Astronomy on Tap,Public Outreach,,AoT Cosmic Couples: following the billion-year romance of stellar partners,Outreach,Stellar Dynamics & Stellar Populations,2/1/2020,1,70,Chicago IL,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Erica Nelson: The emergence of galactic structure ,Science,Galaxies & Cosmology,2/4/2020,1,45,7th Floor,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,2/5/2020,1,,8054,2020, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings|Future Leaders,,James Webb Space Telescope Proposal Workshop,Science,Other,2/6/2020,1,12,CIERA,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ugo di Carlo,Science,,2/7/2020,1,35,CIERA Caf�,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Geoffrey Ryan & TBA,Science,,2/10/2020,1,20,7th Floor Conf. Rm,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Philipp Moesta: Magnetic Fields, Jets, and Turbulence in the Multi-messenger Era",Science,Gravitational Waves & Multi-Messenger Astronomy,2/11/2020,1,45,7th Floor,2020, +CIERA - Special Public Events,Future Leaders|Education,,"CIERA Graduate Students oversee visit from Chicago students ""Off the Street Club""",Education|Interdisciplinary,,2/18/2020,1,16,Dearborn Observatory,2020, +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,2/19/2020,1,,8054,2020, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Irina Zhuravleva,Science,,2/21/2020,1,35,CIERA Caf�,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Irina Zhuravleva,Science,,2/21/2020,1,45,,2020, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA & TBA,Science,,2/24/2020,1,20,7th Floor Conf. Rm,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Andrew Vanderburg: Preparing for Earth 2.0: The Detailed Properties of Terrestrial Planets ,Science,Exoplanets & the Solar System,2/25/2020,1,45,7th Floor,2020, +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Brian McNamara, Sara Issaoun & Giuliano Iorio",Science,,2/28/2020,1,35,CIERA Caf�,2020, +CIERA - Astronomer Evenings,Public Outreach,560314,CIERA Astronomer Evenings,Outreach,,2/28/2020,1,25,Dearborn Observatory,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Allison Strom,Science,,3/3/2020,1,45,,2020, +CIERA - Special Seminars,Academic Seminars,,Kishalay De,Science,,5/20/2020,1,40,,2020, +CIERA - Special Seminars,Academic Seminars,,Rachel Amey,Science,,5/27/2020,1,40,,2020, +CIERA - REACH,Public Outreach|Education,,REACH 2020 Research experiences in Astronomy at CIERA for High School Students,Outreach|Education,,6/29/2020,1,12,,2020, +CIERA - Special Public Events,Public Outreach|Education,,CIERA High School Summer Research Experience - START,Education,,7/29/2020,8,12,Online,2020, +CIERA - REU,Future Leaders,,REU Career Discussion Panel,Professional Development,,8/4/2020,1,11,Online,2020, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephen Taylor,Science,,9/22/2020,1,45,,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marla Geha,Science,,9/29/2020,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kareem El-Badry,Science,,10/2/2020,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilse Cleeves,Science,,10/6/2020,1,45,,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josiah Schwab,Science,,10/13/2020,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Burcin Mutlu Pakdil,Science,,10/16/2020,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Keith Hawkings,Science,,10/20/2020,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Sebastian Gomez,Science,,10/23/2020,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nia Imara,Science,,10/27/2020,1,45,,2021, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 12th Annual Public Lecture: Shane Larson - ""A Storm of Stars: a Living History of the Milky Way""",Outreach,Galaxies & Cosmology,10/28/2020,1,450,Online,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Meridith Joyce,Science,,11/6/2020,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zaven Arzoumanian,Science,,11/10/2020,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Tarraneh Eftekhari,Science,,11/13/2020,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kishalay De,Science,,11/20/2020,1,60,CIERA Caf�,2021, +CIERA - Astronomy on Tap,Public Outreach,,December 12 2019 Doughtnuts in Space and Other Black Hole Stories,Outreach,Other,12/1/2020,1,100,Chicago IL,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Ariadna Murguia-Berthier,Science,,12/4/2020,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Jennifer Barnes,Science,,12/11/2020,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Jamie Law-Smith,Science,,12/11/2020,1,60,CIERA Caf�,2021, +CIERA - Special Public Events,Public Outreach|Education,,Northwestern Prison Education Program,Outreach|Education,,1/1/2021,1,20,"Stateville Correctional Center, Joliet IL",2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Viviana Acquaviva,Science,,1/19/2021,1,45,,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tuguldur Sukhbold,Science,,1/26/2021,1,45,,2021, +CIERA - Astronomy LIVE,Public Outreach|Education,,Astronomy LIVE debut,Outreach,Other,1/29/2021,1,45,Online,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Daniele Michilli,Science,,1/29/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexie Leauthaud,Science,,2/2/2021,1,45,,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Renyu Hu,Science,,2/9/2021,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Tatsuya Mattsumoto,Science,,2/12/2021,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Christopher Irwin,Science,,2/12/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Johanna Teske,Science,,2/16/2021,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Edwin Chi-Ho Chan,Science,,2/19/2021,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Michael Pajkos,Science,,2/19/2021,1,60,CIERA Caf�,2021, +CIERA - Astronomy LIVE,Public Outreach|Education,,Astronomy LIVE - February,Outreach,Other,2/26/2021,1,60,Online,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Elaad Applebaum,Science,,2/26/2021,1,60,CIERA Caf�,2021, +CIERA - Special Seminars,Academic Seminars,,Marta Bryan,Science,,3/8/2021,1,40,,2021, +CIERA - Special Seminars,Academic Seminars,,Jason Wang,Science,,3/10/2021,1,40,,2021, +CIERA - Special Seminars,Academic Seminars,,Kareem El-Badry,Science,,3/16/2021,1,40,,2021, +CIERA - Special Seminars,Academic Seminars,,Ben Margalit,Science,,3/17/2021,1,40,,2021, +CIERA - Special Seminars,Academic Seminars,,Adam Miller,Science,,3/18/2021,1,40,,2021, +CIERA - Special Seminars,Academic Seminars,,Ana Bonaca,Science,,3/22/2021,1,40,,2021, +CIERA - Conferences/Collab Meetings,Conferences,,"CIERA hosts ""TRiple EvolutioN and DYnamics"" (TRENDY) conference",Science,Stellar Dynamics & Stellar Populations,3/22/2021,4,210,Online,2021, +CIERA - Special Seminars,Academic Seminars,,Rachel Bezanson,Science,,3/23/2021,1,40,,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander Ji,Science,,4/6/2021,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Anna Sijie Yu,Science,,4/9/2021,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Francisco Mercado,Science,,4/9/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Megan Ansdell,Science,,4/13/2021,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kaze Wang Kei Wong,Science,,4/16/2021,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Sambaran Banerjee,Science,,4/16/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jennifer Barnes,Science,,4/20/2021,1,45,,2021, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: James Kasting, Pennsylvania State University: ""The Search for Life on Planets Around Other Stars""",Interdisciplinary|Science,Exoplanets & the Solar System,4/23/2021,1,65,Online,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Lachlan Lancaster,Science,,4/23/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lia Corrales,Science,,4/27/2021,1,45,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kathryn Weil,Science,,4/30/2021,1,60,CIERA Caf�,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Caitlin Witt,Science,,4/30/2021,1,60,CIERA Caf�,2021, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/6/2021,1,40,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/7/2021,1,60,CIERA Caf�,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Joe Anderson: Constraining the progenitors of massive star explosions: a meta-analysis of core-collapse supernovae 56Ni yields,Science,Life and Death of Stars,5/11/2021,1,45,7th Floor Conf. Rm,2021, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/13/2021,1,40,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/14/2021,1,60,CIERA Caf�,2021, +CIERA - Special Public Events,Public Outreach|Education,,Baxter STEM day,Education|Outreach,,5/17/2021,1,16,Online,2021, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Greg Mosby: Analyzing star formation histories and near-infrared detectors using tools from machine learning,Science|Interdisciplinary|Data Science & Computing,Life and Death of Stars,5/18/2021,1,45,7th Floor Conf. Rm,2021, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Diversity, Equity, and Inclusion Training",,,5/20/2021,1,40,7th Floor Conf. Rm,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/21/2021,1,60,CIERA Caf�,2021, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/27/2021,1,40,,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/28/2021,1,60,CIERA Caf�,2021, +CIERA - Astronomy LIVE,Public Outreach|Education,570736,CIERA Astronomy LIVE,Outreach,Other,5/28/2021,1,40,Online,2021, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Diversity, Equity, and Inclusion Training",Professional Development,,6/3/2021,1,40,CIERA,2021, +CIERA - Astronomy LIVE,Public Outreach|Education,575816,CIERA Astronomy LIVE,Outreach,Other,6/25/2021,1,40,Online,2021, +CIERA - REACH,Future Leaders|Education,,REACH 2021,Interdisciplinary|Professional Development,,7/1/2021,,21,Online,2021, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,7/15/2021,1,40,,2021, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,7/22/2021,1,40,,2021, +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders|Education|Public Outreach,,Data Science for Public Good Conference,Outreach|Education|Data Science & Computing,,7/23/2021,1,35,Online,2021, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,9/24/2021,1,60,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/1/2021,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Philip Muirhead: The Race to the Bottom: The Search for Planets around Ever Smaller Hosts,Science,Exoplanets & the Solar System,10/5/2021,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/8/2021,1,60,CIERA Caf�,2022, +CIERA - Annual Public Lecture Series,Public Outreach,563371,"CIERA 13th Annual Public Lecture by Dr. Phil Plait: ""Strange New Worlds: Is Earth Special?""",Outreach|Interdisciplinary,Exoplanets & the Solar System,10/14/2021,1,450,Cahn Auditorium,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/15/2021,1,60,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/22/2021,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Daniel Lecoanet: Mixing near Stellar Convective Boundaries,Science,Life and Death of Stars,10/26/2021,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,"Science Happy Hour: Northwestern Alumni Association, Tucson Chapter",Science,,10/29/2021,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Reed Essick: Gravitational Laboratories for Nuclear Physics: Constraining the Equation of State of Neutron Stars with Astrophysical Observations,Science,Black Holes & Dead Stars,11/2/2021,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/5/2021,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Chihway Chang: Weak lensing in the Dark Energy Survey and beyond,Science,Galaxies & Cosmology,11/9/2021,1,50,7th Floor Conf. Rm,2022, +CIERA - Special Public Events,Public Outreach|Education,,Marie Murphy Science Olympiad Solar System Event Coaching,Education|Outreach,Exoplanets & the Solar System,11/11/2021,1,4,Online,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/12/2021,1,60,CIERA Caf�,2022, +CIERA - Social Justice Meetings,Academic Seminars,,Speaker: Monica Vidaurri,,,11/16/2021,1,40,7th Floor Conf. Rm,2022, +CIERA - Special Seminars,Academic Seminars,,Adam Samuels,Science,,11/18/2021,1,60,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/19/2021,1,60,CIERA Caf�,2022, +CIERA - Social Justice Meetings,Academic Seminars|Future Leaders|Community Events,,CIERA Mentorship Survey,Professional Development,,12/2/2021,1,40,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/3/2021,1,60,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/10/2021,1,60,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/17/2021,1,60,CIERA Caf�,2022, +CIERA - Conferences/Collab Meetings,Conferences,,CIERA helps organize Aspen Winter Conference 2022,Science,Gravitational Waves & Multi-Messenger Astronomy,1/2/2022,6,59,"Aspen, Colorado",2022, +CIERA - Special Seminars,Academic Seminars,,Odelia Teboul,Science,Other,1/13/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,1/14/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Maya Fishbach: Astrophysical Lessons from LIGO-Virgo's Black Holes,Science,Black Holes & Dead Stars,1/18/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Social Justice Meetings,Academic Seminars,,Ombudsperson Town Hall,,,1/21/2022,1,60,7th Floor Conf. Rm,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Luke Kelley: Binary AGN and their Gravitational Waves,Science,Gravitational Waves & Multi-Messenger Astronomy,1/25/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,1/28/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Tjitske Starkenburg: Unraveling Galaxy Evolution: tracing observed galaxy properties to galaxy formation physics,Science,Galaxies & Cosmology,2/1/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Seminar,,,2/7/2022,1,40,,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Giacomo Fragione: Intermediate-mass black holes: past, present, future",Science,Black Holes & Dead Stars,2/8/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/11/2022,1,60,CIERA Caf�,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Patrick Sheehan: Unveiling Planet Formation in the Youngest Disks,Science,Exoplanets & the Solar System,2/15/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/18/2022,1,60,CIERA Caf�,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Maya Fishbach: Astrophysics and cosmology with gravitational-wave catalogs,Science,Gravitational Waves & Multi-Messenger Astronomy|Galaxies & Cosmology,2/23/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/25/2022,1,60,CIERA Caf�,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Lena Murchikova: Sagittarius A* in its natural habitat,Science,Other,2/28/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Allison Strom: The Quest to Measure Galaxy Chemistry in the Early Universe,Science,Other,3/2/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Jane Huang: Observational Frontiers in Planet Formation,Science,Exoplanets & the Solar System,3/8/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,3/11/2022,1,60,CIERA Caf�,2022, +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Anna Ho: Fast Transients: A (Fleeting) Window on the Final Stages of Stellar Evolution and the Formation of Compact Objects,Science,Stellar Dynamics & Stellar Populations,3/15/2022,1,60,7th Floor Conf. Rm,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Joel Primack: New Challenges in Cosmology, Galaxy Formation, and Planet Habitability",Science,Galaxies & Cosmology,3/29/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/1/2022,1,60,CIERA Caf�,2022, +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,ALMA Community Day,Science,Other,4/1/2022,1,,CIERA 8th Floor,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/8/2022,1,60,CIERA Caf�,2022, +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Seminar,,,4/11/2022,1,40,,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Kate Alexander: Cosmic Extremes: Time-Domain Astrophysics in a Multi-Messenger World,Science,Gravitational Waves & Multi-Messenger Astronomy,4/12/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Special Public Events,Education|Public Outreach,,UChicago Office of Special Programs Upward Bound Visit,Outreach|Interdisciplinary,,4/12/2022,1,25,CIERA Cafe,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/15/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Fakhri Zahedy: The Multiphase Circumgalactic Medium and What it Teaches Us about Galaxy Evolution,Science,Galaxies & Cosmology,4/19/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Annual Public Lecture Series,Public Outreach,587302,"CIERA Astronomy Night Out: Lecture by Dr. Emily Leiner ""Signals from the Stellar Disco: Decoding the Secret Messages in Starlight""",Outreach,Stellar Dynamics & Stellar Populations,4/22/2022,1,65,Lutkin Hall,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/22/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Diego Mu�oz: A Revised Paradigm of Binary-Disk Interaction,Science,Stellar Dynamics & Stellar Populations|Life and Death of Stars,4/26/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/29/2022,1,60,CIERA Caf�,2022, +CIERA - Conferences/Collab Meetings,Conferences,,"""Intermediate-Mass Black Holes: New Science from Stellar Evolution to Cosmology"" conference",Science|Interdisciplinary,Black Holes & Dead Stars,4/30/2022,4,200,"San Juan, Puerto Rico",2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/6/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rosalba Perna: Electromagnetic Transients in the Disks of Active Galactic Nuclei,Science,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,5/10/2022,1,50,7th Floor Conf. Rm,2022, +Development Events,Development/Strategic,,Spring 2022 BoV Meeting,,,5/10/2022,1,12,Boardroom/Online,2022, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Michael Le Bars, ""Fluid dynamics of Jupiter in the lab: deep jets and floating vortices""",Interdisciplinary|Science,Stellar Dynamics & Stellar Populations,5/12/2022,1,55,LR 5,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/13/2022,1,60,CIERA Caf�,2022, +CIERA - Special Public Events,,,2022 Total Lunar Eclipse,,,5/15/2022,1,250,South Campus Parking Garage,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jennifer Bergner: Volatile chemistry in planet-forming disks,Science,Exoplanets & the Solar System,5/17/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - CIERA Connections,Future Leaders,,"CIERA Connections: Scotty Coughlin ""Careers in Research Computing Services""",Future Leaders|Interdisciplinary|Data Science & Computing,,5/17/2022,1,60,CIERA Caf�,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/20/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Poojan Agarwal: Reconsidering the contribution of massive stars in star cluster simulations,Science,Stellar Dynamics & Stellar Populations,5/24/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Software Tutorials,Future Leaders,,Software Tutorial: Git for Version Control,Professional Development|Data Science & Computing,,5/26/2022,1,10,Boardroom,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/27/2022,1,60,CIERA Caf�,2022, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Wellons: Simulating the Growth and Quenching of Massive Galaxies from the Early Universe to Today,Science,Galaxies & Cosmology,5/31/2022,1,50,7th Floor Conf. Rm,2022, +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,6/3/2022,1,60,CIERA Caf�,2022, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap - Better late than never: JWST arrives and AoT imbibes!,Outreach,Other,6/9/2022,1,40,"Begyle Brewing, 1800 W Cuyler Ave.",2022, +CIERA - REACH,Public Outreach,,REACH 2022,Outreach,,6/21/2022,1,28,CIERA,2022, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Whitney Powers: Internal Heating, why Convective Driving Models Matter",Science,Other,6/22/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,6/24/2022,1,30,Dearborn Observatory,2022, +CIERA - Special Public Events,Future Leaders|Education,,Baxter Summer Scholars Astronomy Day,Education|Outreach|Interdisciplinary,,6/28/2022,1,,,2022, +CIERA - RET,Future Leaders|Education,,RET 2022,Education|Outreach,,7/1/2022,,4,Online,2022, +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Martyna Chruslinska: Galaxies, binaries and gravitational waves",Science,Gravitational Waves & Multi-Messenger Astronomy|Galaxies & Cosmology,7/13/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Special Seminars,Academic Seminars|Community Events,,JWST Lunch Event with Allison Strom,Science|Achievement,Other,7/18/2022,1,60,1800 Sherman Avenue,2022, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,7/29/2022,1,35,Dearborn Observatory,2022, +CIERA - Special Seminars,Academic Seminars,,Special Seminar: Lia Medeiros: New test of the black hole metric with EHT images of Sgr A*,Science,Black Holes & Dead Stars,8/8/2022,1,60,7th Floor Conf. Rm,2022, +CIERA - Special Public Events,Public Outreach,,"""An Astronomer walks into a bar"" live astronomy interview",Outreach,,8/9/2022,1,,"Chicago, Il",2022, +Development Events,Development/Strategic|Public Outreach,,TCN-Adler JWST Event,,,8/9/2022,1,,Adler,2022, +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap: The Dog Days are Over: Drink Some Beer, JWST Images Are Here!",Outreach,Other,8/11/2022,1,50,"Begyle Brewing, 1800 W Cuyler Ave.",2022, +CIERA - Astronomer Evenings,Public Outreach,,Ciera Astronomer Evenings,Outreach,,8/26/2022,1,30,Dearborn Observatory,2022, +CIERA - Special Public Events,Public Outreach,,Northwestern University Osher Institute for Life Long Learning Guest Speaker,Outreach,,9/1/2022,1,,"Evanston, Il",2023, +CIERA - Special Public Events,Public Outreach,,Naperville Astronomical Society Meeting,Outreach,,9/6/2022,1,,"Naperville, Il",2023, +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,LSSTC Data Science Fellowship Program,Interdisciplinary|Data Science & Computing|Professional Development,,9/20/2022,4,25,"Evanston, Il",2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,9/21/2022,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,9/23/2022,1,40,CIERA Caf�,2023, +Development Events,Development/Strategic|Public Outreach,,OLLI JWST Webinar - Strom as guest speaker,,,9/23/2022,1,,Online,2023, +CIERA - Special Public Events,Public Outreach,,Public Talk at Unitarian Church,Outreach,,9/24/2022,1,,"Wilmette, Il",2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Bing Zhang: Fast Radio Bursts: A mystery being solved ,Science,Life and Death of Stars,9/27/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,9/28/2022,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,9/30/2022,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,9/30/2022,1,30,Dearborn Observatory,2023, +CIERA - Special Public Events,Public Outreach,,Campbell Creek Science Center Fireside Chat Series,Science|Outreach,,10/1/2022,1,,"Anchorage, AK",2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Jenny Greene: Elves, Dwarfs, and (mini) Monsters",Science,Other,10/4/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/5/2022,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,Introduction to Quest - Northwestern���s High Performance Computing Cluster,Professional Development|Data Science & Computing,,10/6/2022,1,10,Boardroom,2023, +Development Events,Development/Strategic,,Fall 2022 BoV Meeting,,,10/6/2022,1,10,CIERA,2023, +Development Events,Development/Strategic,,Fall 2022 APL Dinner,,,10/6/2022,1,17,Oceanique,2023, +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 13th Annual Public Lecture by Dr. Carolyn Porco - ""The Journey and the Legacy""",Outreach|Interdisciplinary,Other,10/6/2022,1,165,Cahn Auditorium,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/7/2022,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emanuele Berti: Next-generation detectors: challenges and opportunities,Science|Interdisciplinary,Other,10/11/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/12/2022,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,"Terminal Basics for Quest, MacOS and Linux",Professional Development|Data Science & Computing,,10/13/2022,1,10,Boardroom,2023, +CIERA - Astronomy on Tap,Public Outreach,,AoT - The Nightmare Before Launch,Outreach,Other,10/13/2022,1,25,"Begyle Brewing, 1800 W Cuyler Ave.",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/14/2022,1,40,CIERA Caf�,2023, +Development Events,Development/Strategic,,MMT Arizona Visit,,,10/14/2022,1,13,Arizona,2023, +Development Events,Development/Strategic,,CIERA Tucson NAA Event,,,10/15/2022,1,,Arizona,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Shri Kulkarni: ""The Far Ultraviolet diffuse background""",Science,Other,10/18/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Conferences/Collab Meetings,Conferences,,SEDMV2 Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/18/2022,1,29,"CIERA, 7th Floor, Room 7-600",2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/19/2022,1,30,CIERA Caf�,2023, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,ZTF Collaboration Meetings,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/19/2022,3,39,"CIERA, 7th Floor, Room 7-600",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/21/2022,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Daniel Fabrycky: ""Exoplanetary Probes: Resonant Chains, Exomoons, and Tidal Dynamics""",Science,Exoplanets & the Solar System,10/25/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/26/2022,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,Introduction to Conda,Professional Development|Data Science & Computing,,10/27/2022,1,10,Boardroom,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/28/2022,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,10/28/2022,1,10,Dearborn Observatory,2023, +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,ALMA Data Reduction Workshop,Science|Interdisciplinary|Data Science & Computing,,10/28/2022,1,,CIERA,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Mitch Begelman: ""Black Holes and Their Accretion Disks: A Magnetic Perspective""",Science,Black Holes & Dead Stars,11/1/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/2/2022,1,30,CIERA Caf�,2023, +Development Events,Development/Strategic,,NULC Dearborn Tour,,,11/3/2022,1,71,Dearborn Observatory,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/4/2022,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Federica Bianco: ""Building a Legacy: the Rubin Observatory Legacy Survey of Space and Time""",Science,Other,11/8/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/9/2022,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,Introduction to Workflows with Git and GitHub,Professional Development|Data Science & Computing,,11/10/2022,1,,Boardroom,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/11/2022,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Salvatore Vitale: ""Astrophysics with gravitational-wave sources: today and tomorrow""",Science,Gravitational Waves & Multi-Messenger Astronomy,11/15/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/16/2022,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/18/2022,1,40,CIERA Caf�,2023, +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,REU Site Director's Meeting,Future Leaders|Interdisciplinary,,11/19/2022,3,60,Norris University Center,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Ue-Li Pen:""Coherent cosmological radiation: FRBs and gravitational waves""",Science,Gravitational Waves & Multi-Messenger Astronomy,11/29/2022,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/30/2022,1,30,CIERA Caf�,2023, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Enectali Figueroa-Feliciano, ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",Interdisciplinary|Science,Other,12/1/2022,1,55,F160,2023, +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap: Just the Tip of the Ice... Cube: Cold Drinks, Hot Science ",Outreach,Other,12/1/2022,1,60,"Begyle Brewing, 1800 W Cuyler Ave.",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,12/2/2022,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,12/2/2022,1,11,Dearborn Observatory,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,12/9/2022,1,40,CIERA Caf�,2023, +Development Events,Development/Strategic,,President Schill Visit,,,12/9/2022,1,,CIERA,2023, +CIERA - Special Public Events,Public Outreach,,NASA CoS Visit to CPS Schools,Outreach,,12/14/2022,1,60,"Wadsworth STEM Elementary School, Chicago South Side",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/13/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Katerina Chatziioannou: ""Studying the neutron star equation of state with gravitational waves""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/17/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,1/18/2023,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/20/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Jessica Lu: ""Black Holes in the Milky Way and the Tech to Find Them""",Science|Interdisciplinary,Black Holes & Dead Stars,1/24/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,1/25/2023,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/27/2023,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,1/27/2023,1,50,Dearborn Observatory,2023, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,1/30/2023,1,8,Boardroom,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Marcelle Soares-Santos: ""Dark Energy: recent results and the path for discovery in the era of multi-messenger studies""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/31/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/1/2023,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Writing Presentable Code in Python,Professional Development|Data Science & Computing,,2/2/2023,1,10,Boardroom,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/3/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Meredith MacGregor: ""How to Form a Habitable Planet""",Science|Interdisciplinary,Exoplanets & the Solar System,2/7/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/8/2023,1,30,CIERA Caf�,2023, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Too Hot to Handle - Inside the Lives of The Universe's Most Notorious Couples!,Outreach,Black Holes & Dead Stars,2/9/2023,1,42,"Begyle Brewing, 1800 W Cuyler Ave.",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/10/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Gongjie Li: ""Dynamical Origin and Habitability of Planets -- On the Spin-Axis Variations in Planetary Systems""",Science,Exoplanets & the Solar System,2/14/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/15/2023,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Adventures in Python I,Professional Development|Data Science & Computing,,2/16/2023,1,10,Boardroom,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/17/2023,1,40,CIERA Caf�,2023, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Edwin Kite, ""Climate of Mars, past and future""",Interdisciplinary|Science,Exoplanets & the Solar System,2/21/2023,1,82,F160,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/22/2023,1,30,CIERA Caf�,2023, +Development Events,Development/Strategic,,Block Museum Dario Robleto Event,Interdisciplinary,,2/22/2023,1,9,Block Museum,2023, +CIERA - Special Public Events,Public Outreach,,STEAM zoom outreach presentation,Outreach,,2/23/2023,1,80,Online,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/24/2023,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,2/24/2023,1,3,Dearborn Observatory,2023, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,Mental Health First Aid Introductory Workshop,,,2/27/2023,1,12,7th Floor Conf. Rm,2023, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,2/27/2023,1,6,Boardroom,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Kevin Hainline: ""The Farthest: Exploring the Early Universe with JWST/JADES""",Science,Galaxies & Cosmology,2/28/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/1/2023,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Adventures in Python II,Professional Development|Data Science & Computing,,3/2/2023,1,10,Boardroom,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/3/2023,1,40,CIERA Caf�,2023, +CIERA - Conferences/Collab Meetings,Conferences,,"2023 Aspen Winter Conference - ""eXtreme Black Holes""",Science|Interdisciplinary,Black Holes & Dead Stars,3/5/2023,6,109,Aspen Center for Physics,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Evan Kirby: ""Primordial r-Process Dispersions in Globular Clusters""",Science,Stellar Dynamics & Stellar Populations,3/7/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/8/2023,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/10/2023,1,40,CIERA Caf�,2023, +CIERA - Conferences/Collab Meetings,Conferences,,LIGO-VIRGO-KAGRA Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,3/13/2023,4,650,Norris University Center,2023, +CIERA - Annual Public Lecture Series,Public Outreach,,Special CIERA Astronomy Public Lecture by Dr. Gabriela Gonzalez,Outreach,Other,3/14/2023,1,75,Norris University Center,2023, +CIERA - Annual Public Lecture Series,Public Outreach,,"Special Public Lecture by Dr. Gaby Gonzalez: ""Gravitational Waves, Black Holes, and the Machines that Detect them""",Outreach|Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,3/14/2023,1,100,"McCormick Auditorium, Norris University Center",2023, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Pie in the Sky: A Slice of the Universe Served up Fresh!,Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/14/2023,1,65,"Five & Dime, 1026 Davis St.",2023, +Development Events,Development/Strategic,,Gonzalez Public Lecture Dinner,,,3/14/2023,1,10,,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/15/2023,1,30,CIERA Caf�,2023, +CIERA - Special Public Events,Public Outreach,,"""Star Eyes"" initiative debuts as part of LIGO-Virgo-KAGRA collaboration",Science|Interdisciplinary|Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/15/2023,1,,Norris,2023, +Development Events,Development/Strategic,,Reitze Event,,,3/17/2023,1,20,CIERA Sky Lounge,2023, +CIERA - Special Public Events,Future Leaders|Academic Seminars,,Baxter Symposium Workshops,Education|Outreach|Interdisciplinary,,3/17/2023,1,80,NU Global Hub and Allen Center,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/29/2023,1,30,CIERA Caf�,2023, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: David Bercovici: Origin, Evolution and Habitability of Planet Earth",Interdisciplinary|Science,Other,3/30/2023,1,55,L211,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/31/2023,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,3/31/2023,1,25,Dearborn Observatory,2023, +CIERA - Special Seminars,Public Outreach,,Guest Lecture at UIC,Science|Outreach,Other,3/31/2023,1,55,Online,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: David Kaplan: The ASKAP Variables and Slow Transients (VAST) Survey ,Science|Interdisciplinary,Life and Death of Stars,4/4/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/5/2023,1,30,CIERA Caf�,2023, +Development Events,Development/Strategic,,Spring 2023 BoV Meeting,,,4/6/2023,1,,Boardroom/Online,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/7/2023,1,40,CIERA Caf�,2023, +CIERA - CIERA Connections,Future Leaders,,CIERA Connections: Ben Nelson,Future Leaders|Interdisciplinary|Data Science & Computing,,4/10/2023,1,46,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Greg Bryan: ""A Multiscale Physics Approach to Understanding Galaxy Evolution""",Science|Interdisciplinary,Galaxies & Cosmology,4/11/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/12/2023,1,30,CIERA Caf�,2023, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Tyson Littenberg: Data Science Challenges in Gravitational Wave Surveys,Interdisciplinary|Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,4/13/2023,1,43,L211,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/14/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Amy Reines: ""Dwarf Galaxies and the Smallest Supermassive Black Holes""",Science,Black Holes & Dead Stars|Galaxies & Cosmology,4/18/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/19/2023,1,30,CIERA Caf�,2023, +CIERA - Special Public Events,Public Outreach,,Figueroa Lab Tour,Outreach,,4/19/2023,1,12,"1801 Maple Ave, Evanston IL",2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/21/2023,1,40,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Brian Metzger: ""Heavy Element Nucleosynthesis from the Birth of Black Holes""",Science,Black Holes & Dead Stars,4/25/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/26/2023,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/28/2023,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,4/28/2023,1,25,Dearborn Observatory,2023, +Development Events,Development/Strategic,,Science Advisory Board Meeting,,,4/28/2023,1,10,CIERA,2023, +CIERA - Journal Clubs,Academic Seminars,592166,CIERA Journal Club,Science,,5/2/2023,1,35,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589798,"Astro Seminar: Kaitlin Kratter: ""The Origins of Planets and the Stars they Orbit""",Science,Exoplanets & the Solar System,5/2/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,592212,Observational Astro Meeting,Science,,5/3/2023,1,30,CIERA Caf�,2023, +CIERA - Special Public Events,Future Leaders|Academic Seminars|Public Outreach,,Astronomy Teaching Workshop: The Death and Afterlife of Stars,Education|Professional Development,Life and Death of Stars,5/3/2023,1,7,"Lurie Medical Research Center, 303 E Superior St, Chicago Il",2023, +CIERA - Software Tutorials,Future Leaders,597659,CIERA Computing Workshop: Type Hinting in Python,Professional Development|Data Science & Computing,,5/4/2023,1,,CIERA,2023, +CIERA - Astronomy on Tap,Public Outreach,598364,Astronomy on Tap: Star Wars Day - Party like it's Boonta Eve,Outreach,,5/4/2023,1,43,"Begyle Brewing, 1800 W Cuyler Ave.",2023, +CIERA - Theory Group Meetings,Academic Seminars,592311,CIERA Theory Group,Science,,5/5/2023,1,40,CIERA Caf�,2023, +CIERA - Journal Clubs,Academic Seminars,592167,CIERA Journal Club,Science,,5/9/2023,1,35,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589799,"Astro Seminar: Tamara Bogdanovic: ""From Kiloparsec Scales to Merger: Properties of Dual AGNs that Become Gravitational Wave Sources""",Science,Gravitational Waves & Multi-Messenger Astronomy,5/9/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,592213,Observational Astro Meeting,Science,,5/10/2023,1,30,CIERA Caf�,2023, +CIERA - Theory Group Meetings,Academic Seminars,592312,CIERA Theory Group,Science,,5/12/2023,1,40,CIERA Caf�,2023, +CIERA - Special Seminars,Academic Seminars,600888,Janosz Dewberry: Dynamical tides in rapidly rotating stars,Science,Stellar Dynamics & Stellar Populations,5/15/2023,1,40,CIERA Cafe,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589782,"Astro Seminar: Misty C. Bentz: ""Comparing Direct Black Hole Mass Measurements in Active Galactic Nuclei""",Science,Black Holes & Dead Stars,5/16/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Journal Clubs,Academic Seminars,592168,CIERA Journal Club,Science,,5/16/2023,1,35,CIERA Caf�,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,592214,Observational Astro Meeting,Science,,5/17/2023,1,30,CIERA Caf�,2023, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Nia Imara: Interconnected: A Journey Through Inner and Outer Space,Interdisciplinary,Other,5/18/2023,1,55,The Block Museum,2023, +CIERA - Theory Group Meetings,Academic Seminars,592313,CIERA Theory Group,Science,,5/19/2023,1,40,CIERA Caf�,2023, +CIERA - Annual Public Lecture Series,Public Outreach,600415,"CIERA Astronomy Night Out Featuring a Lecture by Dr. Allison Strom ""Sequencing the DNA of Galaxies with JWST"" ",Outreach|Science,Galaxies & Cosmology,5/19/2023,1,,Tech Lecture Room 2,2023, +CIERA - CIERA Connections,Future Leaders,600659,"CIERA Connections: Harry Kraemer ""Your 168: Finding Purpose and Satisfaction in a Values-Based Life""",Future Leaders|Interdisciplinary,,5/22/2023,1,60,CIERA Caf�,2023, +CIERA - Journal Clubs,Academic Seminars,592169,CIERA Journal Club,Science,,5/23/2023,1,35,CIERA Caf�,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,592215,Observational Astro Meeting,Science,,5/24/2023,1,30,CIERA Caf�,2023, +CIERA - Special Seminars,Future Leaders|Academic Seminars,,NICO Data Science Night,Outreach|Data Science & Computing|Interdisciplinary,Other,5/25/2023,1,6,Tech,2023, +CIERA - Theory Group Meetings,Academic Seminars,592314,CIERA Theory Group,Science,,5/26/2023,1,40,CIERA Caf�,2023, +CIERA - Astronomer Evenings,Public Outreach,594562,CIERA Astronomer Evenings,Outreach,,5/26/2023,1,20,Dearborn Observatory,2023, +CIERA - Journal Clubs,Academic Seminars,592170,CIERA Journal Club,Science,,5/30/2023,1,35,CIERA Caf�,2023, +CIERA - Journal Clubs,Academic Seminars,603818,CIERA Journal Club [copy],Science,,5/30/2023,1,35,CIERA Caf�,2023, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589800,"Astro Seminar: Enrico Ramirez-Ruiz:"" Tidal Disruption of Stars by Supermassive Black Holes: What have we Learned and what can we Learn?""",Science,Black Holes & Dead Stars,5/30/2023,1,50,7th Floor Conf. Rm,2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,592216,Observational Astro Meeting,Science,,5/31/2023,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders,600964,CIERA Computing Workshop: Creating Your First Python Package,Professional Development|Data Science & Computing,,6/1/2023,1,,"CIERA, 7th Floor, 7-600",2023, +CIERA - Observational Astronomy Meetings,Academic Seminars,599737,Observational Astro Meeting,Science,,6/7/2023,1,30,CIERA Caf�,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601456,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/13/2023,1,,CIERA,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601457,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/20/2023,1,,CIERA,2023, +CIERA - Social Justice Meetings,Academic Seminars,601423,Climate Study Update,,,6/21/2023,1,,CIERA Caf�,2023, +CIERA - Special Seminars,Academic Seminars,,Chris (Yuan Qi) Ni,Science,,6/23/2023,1,40,,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601459,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/27/2023,1,,CIERA,2023, +CIERA - Astronomer Evenings,Public Outreach,594563,CIERA Astronomer Evenings,Outreach,,6/30/2023,1,25,Dearborn Observatory,2023, +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,601434,Code / Astro Conference,Interdisciplinary|Data Science & Computing|Professional Development,Other,7/10/2023,5,80,CIERA,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601485,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/11/2023,1,,CIERA,2023, +CIERA - Special Seminars,Academic Seminars,602078,Kerry Paterson: An Overview of the Euclid mission,Science,Other,7/12/2023,1,40,CIERA Cafe,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601486,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/18/2023,1,,CIERA,2023, +CIERA - Special Public Events,Public Outreach|Education,,Baxter Summer Scholars Program,Outreach|Education|Professional Development,,7/18/2023,1,10,Tech,2023, +CIERA - Astronomy on Tap,Public Outreach,602116,Out-of-This-World Brews: Moonstruck Extremophiles and Stellar Sips!,Outreach,,7/20/2023,1,34,"Five & Dime, 1026 Davis Street",2023, +CIERA - Special Public Events,Public Outreach|Education,,University of Chicago Office of Special Programs student visit,Education|Outreach|Interdisciplinary,,7/21/2023,1,9,CIERA,2023, +CIERA - Software Tutorials,Future Leaders|Community Events,601487,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/25/2023,1,,"CIERA, 7th Floor, 7-600",2023, +CIERA - Special Seminars,Academic Seminars,,Sashwat Tanay,Science,,7/26/2023,1,40,,2023, +CIERA - Astronomer Evenings,Public Outreach,594564,CIERA Astronomer Evenings,Outreach,,7/28/2023,1,20,Dearborn Observatory,2023, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,602012,Astro Imaging Workshop 2023,Science|Data Science & Computing|Interdisciplinary,Other,7/31/2023,1,30,Mudd/CIERA Caf�,2023, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,602013,Zooniverse,Interdisciplinary|Public Outreach,,8/14/2023,4,22,CIERA,2023, +Development Events,Development/Strategic|Future Leaders,,REU+REACH Final Presentations VIP Observing,Professional Development,,8/18/2023,1,4,CIERA Caf�,2023, +CIERA - Special Seminars,Academic Seminars,603196,Lucy McNeill: Evolution of hot helium white dwarf binaries,Science,Stellar Dynamics & Stellar Populations,8/21/2023,1,40,CIERA Cafe,2023, +CIERA - Special Seminars,Academic Seminars,603195,Jenny Greene: The Red Universe UNCOVERed: Early Spectral results from JWST Treasury Survey UNCOVER,Science,Other,8/23/2023,1,40,CIERA Cafe,2023, +CIERA - Special Seminars,Academic Seminars,603194,Taeho Ryu: Two types of nuclear transients - tidal disruption events and disruptive collisions,Science,Galaxies & Cosmology,8/24/2023,1,40,CIERA Cafe,2023, +CIERA - Astronomer Evenings,Public Outreach,594565,CIERA Astronomer Evenings,Outreach,,8/25/2023,1,,Dearborn Observatory,2023, +CIERA - Conferences/Collab Meetings,Conferences,601429,MODEST-23: Star Clusters in the Post-Pandemic Era,Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,8/28/2023,5,115,Harris Hall,2023, +CIERA - Social Justice Meetings,Academic Seminars,603251,DEI Panel Discussion with Kelly Holley-Bockelmann & Smadar Naoz,,,8/31/2023,1,,,2023, +CIERA - Special Seminars,Academic Seminars,603731,Debatri Chattopadhyay: Pulsars through the lens of population modelling ,Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,9/5/2023,1,40,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,603729,Yael Alush: Testing the No-Hair Theorem on Sgr A*- Revisited,Science,Galaxies & Cosmology|Life and Death of Stars,9/5/2023,1,40,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,603197,Shivani Bhandari,Science,Other,9/7/2023,1,40,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,603198,Christopher Irwin: Insights on the origin of low-luminosity GRBs from a revised shock breakout picture for GRB 060218,Science,Gravitational Waves & Multi-Messenger Astronomy,9/12/2023,1,40,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,603199,Travis Rector: How can astronomers help to address climate change?,Science|Interdisciplinary,Other,9/18/2023,1,40,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,604403,CIERA Journal Club,Science,,9/19/2023,1,35,CIERA Cafe,2024, +CIERA - Community Events,Community Events,,Academic Year Kickoff and Welcome,Interdisciplinary,,9/19/2023,1,,CIERA 8th floor,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603858,Observational Astronomy Meeting,Science,,9/20/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,604382,CIERA Theory Group,Science,,9/21/2023,1,40,CIERA Cafe,2024, +Development Events,Development/Strategic,,BoT Spotlight Presentation by Vicky Kalogera: Weinberg College Among the Stars,Science|Outreach,Other,9/22/2023,1,60,Allen Center,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603285,"Astrophysics Seminar: Chris Hamilton: ""It Takes Two: On the Secular and Stochastic Dynamics of the Weird Wide Binaries In the Milky Way""",Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,9/26/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Journal Clubs,Academic Seminars,603819,CIERA Journal Club,Science,,9/26/2023,1,35,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603859,Observational Astronomy Meeting,Science,,9/27/2023,1,30,CIERA Cafe,2024, +CIERA - Software Tutorials,Future Leaders,604194,Introduction to Quest - Northwestern's High Performance Computing Cluster,Professional Development|Data Science & Computing,,9/28/2023,1,,"CIERA, 8th Floor, Boardroom",2024, +CIERA - Theory Group Meetings,Academic Seminars,603896,CIERA Theory Group,Science,,9/28/2023,1,40,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,594566,CIERA Astronomer Evenings,Outreach,,9/29/2023,1,20,Dearborn Observatory,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603291,"Astrophysics Seminar: Daniel Stark: ""Galaxies in the Reionization Era: New Insight from JWST""",Science,Galaxies & Cosmology,10/3/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Journal Clubs,Academic Seminars,603820,CIERA Journal Club,Science,,10/3/2023,1,35,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603860,Observational Astronomy Meeting,Science,,10/4/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603897,CIERA Theory Group,Science,,10/5/2023,1,40,CIERA Cafe,2024, +Development Events,Development/Strategic,,Fall 2023 BoV Meeting,,,10/5/2023,1,,CIERA,2024, +Development Events,Development/Strategic,,Fall 2023 APL Dinner,,,10/5/2023,1,,CIERA,2024, +CIERA - Annual Public Lecture Series,Public Outreach,600630,CIERA 15th Annual Public Lecture by Marcia Bartusiak,Outreach,Galaxies & Cosmology,10/5/2023,1,200,Cahn Auditorium,2024, +CIERA - Conferences/Collab Meetings,Conferences,602112,NASA Space Apps Challenge Chicago,Interdisciplinary|Education,Other,10/7/2023,3,60,CIERA,2024, +CIERA - Special Seminars,Academic Seminars,605700,CIERA Special Seminar: Leah Jenks: Gravitational Wave Probes of Parity Violation ,Science,Gravitational Waves & Multi-Messenger Astronomy,10/9/2023,1,40,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603821,CIERA Journal Club,Science,,10/10/2023,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603292,"Astrophysics Seminar: Pablo Laguna: ""Two Black Hole Stories from Numerical Relativity""",Science,Black Holes & Dead Stars,10/10/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603861,Observational Astronomy Meeting,Science,,10/11/2023,1,30,CIERA Cafe,2024, +CIERA - Software Tutorials,Future Leaders,605668,Computational Workshop: Python 3.12,Professional Development|Data Science & Computing,,10/12/2023,1,,"CIERA, 8th Floor, Boardroom",2024, +CIERA - Theory Group Meetings,Academic Seminars,603898,CIERA Theory Group,Science,,10/12/2023,1,40,CIERA Cafe,2024, +CIERA - Astronomy on Tap,Public Outreach,605906,The Vampires of the Universe - Fall into Back Holes with AoT,Outreach,Black Holes & Dead Stars,10/12/2023,1,40,"Begyle Brewing, 1800 W Cuyler Ave.",2024, +CIERA - Social Justice Meetings,Academic Seminars,605933,Climate Action Team Townhall,,,10/13/2023,1,,CIERA Cafe,2024, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,606079,NSF GRFP Writing Feedback Session,,,10/16/2023,1,,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,605701,CIERA Special Seminar: Floor Brekgaarden: Gravitational Wave Paleontology: a New Frontier to Probe the Lives of Massive Binary Stars across Cosmic History,Science,Gravitational Waves & Multi-Messenger Astronomy|Life and Death of Stars,10/16/2023,1,40,"CIERA, 7th Floor, 7-600",2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603335,"Astrophysics Seminar: DJ Pasham: ""Repeating Extragalactic Nuclear Transients as Extreme Mass Ratio Binaries"" ",Science,Galaxies & Cosmology|Life and Death of Stars,10/17/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Journal Clubs,Academic Seminars,603822,CIERA Journal Club,Science,,10/17/2023,1,35,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603862,Observational Astronomy Meeting,Science,,10/18/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603899,CIERA Theory Group,Science,,10/19/2023,1,40,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Villar,Science,,10/24/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Special Seminars,Academic Seminars,,Soham Mandal,Science,,10/26/2023,1,40,,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Keith Hawkins,Science,,10/31/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Theory Group Meetings,Academic Seminars,603901,CIERA Theory Group,Science,,11/2/2023,1,40,CIERA Cafe,2024, +CIERA - Social Justice Meetings,Future Leaders|Community Events,607104,CIERA Mentorship Lunch,,,11/6/2023,1,,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603825,CIERA Journal Club,Science,,11/7/2023,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606001,"Astrophysics Seminar: Diana Powell: ""Microphysical Insights into Protoplanetary Disks and Exoplanet Atmospheres""",Science,Exoplanets & the Solar System,11/7/2023,1,50,7th Floor Conf. Rm,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603865,Observational Astronomy Meeting,Science,,11/8/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603902,CIERA Theory Group,Science,,11/9/2023,1,40,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607482,CIERA en Espanol,Interdisciplinary,,11/13/2023,1,,CIERA 8th floor,2024, +CIERA - Special Seminars,Academic Seminars,604198,CIERA Special Theory Group Meeting,Science,Other,11/13/2023,1,40,CIERA Cafe,2024, +CIERA - Special Seminars,Academic Seminars,,Subo Dong,Science,,11/13/2023,1,40,,2024, +CIERA - Special Seminars,Academic Seminars,,Nianyi Chen,Science,,11/13/2023,1,40,,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606002,"Astrophysics Seminar: Rob Simcoe: "" The Emergence of Circumgalactic Heavy Elements in the First Gyr with JWST/EIGER""",Science,Galaxies & Cosmology,11/14/2023,1,50,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603826,CIERA Journal Club,Science,,11/14/2023,1,35,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603866,Observational Astronomy Meeting,Science,,11/15/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603903,CIERA Theory Group,Science,,11/16/2023,1,40,CIERA Cafe,2024, +CIERA - Special Public Events,Public Outreach,,Warren Township High School Astronomy Career Panel,Outreach|Professional Development,,11/17/2023,1,20,"Gumee, Il",2024, +CIERA - Community Events,Community Events,607515,Tea Time,Interdisciplinary,,11/20/2023,1,,CIERA 8th floor,2024, +CIERA - Community Events,Community Events,607516,CIERA Winter Party Potluck,Interdisciplinary,,11/27/2023,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603828,CIERA Journal Club,Science,,11/28/2023,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606003,"Astrophysics Seminar: Natasha Batalha, NASA: ""The Open Access Era of Exoplanet Characterization at the Onset of Next-Generation Telescopes""",Science,Exoplanets & the Solar System,11/28/2023,1,50,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603868,Observational Astronomy Meeting,Science,,11/29/2023,1,30,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603905,CIERA Theory Group,Science,,11/30/2023,1,40,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,606527,CIERA Astronomer Evenings: The Black Holes of Einstein's Relativity,Outreach,Black Holes & Dead Stars,12/1/2023,1,15,Dearborn Observatory,2024, +CIERA - Conferences/Collab Meetings,Conferences,601439,Intermediate-Mass Black Holes: New Science from Stellar Evolution to Cosmology,Science|Interdisciplinary,Black Holes & Dead Stars,12/2/2023,4,62,"Grand Caribe resort, San Pedro, Belize",2024, +CIERA - Community Events,Community Events,607517,Tea Time,Interdisciplinary,,12/4/2023,1,,CIERA 8th floor,2024, +CIERA - Astronomy on Tap,Public Outreach,607491,Merry Chirp-mass: Carol of the Waves,Outreach,Gravitational Waves & Multi-Messenger Astronomy,12/7/2023,1,55,"Begyle Brewing, 1800 W Cuyler Ave.",2024, +CIERA - Social Justice Meetings,Community Events,607483,CIERA en Espanol,,,12/11/2023,1,,,2024, +CIERA - Community Events,Community Events,607518,Tea Time,Interdisciplinary,,12/11/2023,1,,CIERA 8th floor,2024, +CIERA - Community Events,Community Events,607519,Tea Time,Interdisciplinary,,12/18/2023,1,,CIERA 8th floor,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,R Process Element Meeting,Science,,12/19/2023,1,8,CIERA ,2024, +CIERA - Community Events,Community Events,607520,Tea Time,Interdisciplinary,,12/25/2023,1,,CIERA 8th floor,2024, +CIERA - Community Events,Community Events,607521,Tea Time,Interdisciplinary,,1/1/2024,1,,CIERA 8th floor,2024, +CIERA - Community Events,Community Events,607522,Tea Time,Interdisciplinary,,1/8/2024,1,,CIERA 8th floor,2024, +CIERA - Social Justice Meetings,Community Events,607484,CIERA en Espanol,,,1/8/2024,1,,,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608751,"Astrophysics Seminar: Harley Katz: ""Challenging our Understanding of High-redshift Galaxy Formation with JWST Observations""",Science,Other,1/9/2024,1,50,CIERA Cafe,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,609499,SAGURO Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,1/11/2024,1,,CIERA,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603874,Observational Astronomy Meeting,Science,,1/12/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607523,Tea Time,Interdisciplinary,,1/15/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603835,CIERA Journal Club,Science,,1/16/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607079,"Astrophysics Seminar: Nahum Arav: ""The Contribution of Quasar Absorption Outflows to AGN Feedback""",Science,Galaxies & Cosmology,1/16/2024,1,50,CIERA Cafe,2024, +CIERA - Special Public Events,Education,,CPS Physics Night,Outreach|Education,,1/17/2024,1,15,"Von Steuben High School, Chicago",2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,609500,SAGURO Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,1/17/2024,2,,,2024, +CIERA - Theory Group Meetings,Academic Seminars,603912,CIERA Theory Group,Science,,1/18/2024,1,40,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603875,Observational Astronomy Meeting,Science,,1/19/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607524,Tea Time,Interdisciplinary,,1/22/2024,1,,CIERA 8th floor,2024, +CIERA - Community Events,Community Events,609596,Mentorship Lunch,Interdisciplinary,,1/22/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603836,CIERA Journal Club,Science,,1/23/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607165,Astrophysics Seminar: Quinn Konopacky: Constraining Planet Formation with Spectroscopy of Direct Imaged Planets,Science|Interdisciplinary,Exoplanets & the Solar System,1/23/2024,1,50,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603913,CIERA Theory Group,Science,,1/25/2024,1,40,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,606528,CIERA Astronomer Evenings,Outreach,,1/26/2024,1,30,Dearborn Observatory,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603876,Observational Astronomy Meeting,Science,,1/26/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607525,Tea Time,Interdisciplinary,,1/29/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603837,CIERA Journal Club,Science,,1/30/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608752,"Astrophysics Seminar: Jessie Dotson: ""The Asteroid Threat Assessment Project""",Science|Interdisciplinary,Exoplanets & the Solar System,1/30/2024,1,50,CIERA Cafe,2024, +CIERA - CROCS,Public Outreach|Education,,CROCS: Chicago Military Bronzeville,Outreach|Education|Professional Development,Other,1/31/2024,1,25,Chicago Military Bronzeville,2024, +CIERA - Community Events,Community Events,607485,CIERA en Espanol,Interdisciplinary,,2/1/2024,1,,CIERA 8th floor,2024, +CIERA - Theory Group Meetings,Academic Seminars,603914,CIERA Theory Group,Science,,2/1/2024,1,40,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603877,Observational Astronomy Meeting,Science,,2/2/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607526,Tea Time,Interdisciplinary,,2/5/2024,1,,CIERA 8th floor,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608753,Astrophysics Seminars: Jamie Rankin: ���New Insights into Cosmic Rays from Parker Solar Probe���,Science,Galaxies & Cosmology,2/6/2024,1,50,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603838,CIERA Journal Club,Science,,2/6/2024,1,35,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603915,CIERA Theory Group,Science,,2/8/2024,1,40,CIERA Cafe,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,CHIME/FRB Gemini LLP Collab Meeting,Science,,2/8/2024,2,,,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603878,Observational Astronomy Meeting,Science,,2/9/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607527,Tea Time,Interdisciplinary,,2/12/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603839,CIERA Journal Club,Science,,2/13/2024,1,35,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603879,Observational Astronomy Meeting,Science,,2/16/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607528,Tea Time,Interdisciplinary,,2/19/2024,1,,CIERA 8th floor,2024, +CIERA - Software Tutorials,Future Leaders|Academic Seminars,610698,Advanced Python Techniques I,Professional Development|Data Science & Computing,,2/19/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Journal Clubs,Academic Seminars,603840,CIERA Journal Club,Science,,2/20/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610561,"Astrophysics Seminar: Greg Herczeg:""Variability in the Growth of Stars and Planets""",Science,Life and Death of Stars,2/20/2024,1,50,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603917,CIERA Theory Group,Science,,2/22/2024,1,40,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,606529,CIERA Astronomer Evenings: Gravitational Waves & their detection,Outreach,Gravitational Waves & Multi-Messenger Astronomy,2/23/2024,1,9,Dearborn Observatory,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603880,Observational Astronomy Meeting,Science,,2/23/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607529,Tea Time,Interdisciplinary,,2/26/2024,1,,CIERA 8th floor,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608328,"Astrophysics Seminar:Alex Ciprijanovic: ""Bridging the Gap Between Astronomical Datasets: From Proof of Concept to AI Model Deployment with Domain Adaptation""",Science|Interdisciplinary|Data Science & Computing,Other,2/27/2024,1,50,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603841,CIERA Journal Club,Science,,2/27/2024,1,35,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603918,CIERA Theory Group,Science,,2/29/2024,1,40,CIERA Cafe,2024, +CIERA - Social Justice Meetings,Academic Seminars,610757,CIERA Allyship and Advocacy Workshop,,,3/4/2024,1,,CIERA Cafe,2024, +CIERA - Software Tutorials,Future Leaders|Academic Seminars,609769,Special Computational Workshop: Quest OnDemand,Professional Development|Data Science & Computing,,3/4/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Community Events,Community Events,607530,Tea Time,Interdisciplinary,,3/4/2024,1,,CIERA 8th floor,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607166,"Astrophysics Seminar: Carl Fields: ""Next-Generation Simulations of The Remarkable Deaths of Massive Stars""",Science|Data Science & Computing,Life and Death of Stars,3/5/2024,1,50,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,603842,CIERA Journal Club,Science,,3/5/2024,1,35,CIERA Cafe,2024, +CIERA - Social Justice Meetings,Community Events,607486,CIERA en espa�ol,,,3/7/2024,1,,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603919,CIERA Theory Group,Science,,3/7/2024,1,40,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603882,Observational Astronomy Meeting,Science,,3/8/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607531,Tea Time,Interdisciplinary,,3/11/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,611634,CIERA Journal Club,Science,,3/12/2024,1,35,CIERA Cafe,2024, +CIERA - Astronomy on Tap,Public Outreach,610942,3.141Pi: Exploring the Universe One Slice at a Time,Outreach,Other,3/14/2024,1,89,"Begyle Brewing, 1800 W Cuyler Ave.",2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,611661,Observational Astronomy Meeting [copy],Science,,3/15/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607532,Tea Time,Interdisciplinary,,3/18/2024,1,,CIERA 8th floor,2024, +CIERA - Special Public Events,Public Outreach,,Spring Stargazing and the Upcoming Eclipse with Northwestern,Outreach|Education,,3/19/2024,1,30,"Evanston Public Library: 1801 Main St, Evanston Il",2024, +CIERA - Community Events,Community Events,607533,Tea Time,Interdisciplinary,,3/25/2024,1,,CIERA 8th floor,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,611509,"Astrophysics Seminar: Sean Ressler: ""Cleaning Up The Dirty Astrophysical Parts: Novel Approaches to Simulating Black Hole Accretion """,Science|Data Science & Computing,Black Holes & Dead Stars,3/26/2024,1,50,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603922,CIERA Theory Group,Science,,3/28/2024,1,40,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,606530,CIERA Astronomer Evenings,Outreach,,3/29/2024,1,22,Dearborn Observatory,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,611645,Observational Astronomy Meeting,Science,,3/29/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,607534,Tea Time,Interdisciplinary,,4/1/2024,1,,CIERA 8th floor,2024, +CIERA - CROCS,Public Outreach|Education,,CROCS,Outreach|Education|Professional Development,Other,4/1/2024,1,116,Build Chicago: 5100 W Harrison St,2024, +CIERA - Community Events,Community Events,611635,Grad Student Ice Cream Social,Interdisciplinary,,4/2/2024,1,,CIERA 8th floor,2024, +CIERA - Software Tutorials,Future Leaders,612712,Introduction to Databases I,Professional Development|Data Science & Computing,,4/3/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Theory Group Meetings,Academic Seminars,603923,CIERA Theory Group,Science,,4/4/2024,1,40,CIERA Cafe,2024, +CIERA - CROCS,Public Outreach|Education,,CROCS,Outreach|Education|Professional Development,Other,4/5/2024,1,225,"Chute Middle School, Evanston Il",2024, +CIERA - Special Public Events,Public Outreach,,Solar Eclipse 2024 Buildup,,,4/5/2024,1,200,Tech,2024, +CIERA - Special Public Events,Public Outreach,,Solar Eclipse Presentation,,,4/6/2024,1,41,"The Mather, Evanston Il",2024, +CIERA - Special Public Events,Public Outreach,,Pre-Eclipse Science Talks,Outreach,,4/7/2024,1,230,"Carmel, Indiana",2024, +CIERA - Community Events,Community Events,607535,Tea Time,Interdisciplinary,,4/8/2024,1,,CIERA 8th floor,2024, +CIERA - Special Public Events,Future Leaders|Education,,Eclipse at MESH 2024,Outreach|Interdisciplinary,Other,4/8/2024,1,65,"CEEM, Indiana University, Bloomington Indiana",2024, +CIERA - Journal Clubs,Academic Seminars,603847,CIERA Journal Club,Science,,4/9/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brant Robertson,Science,,4/9/2024,1,50,,2024, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Vikram Dwarkadas,Science,,4/11/2024,1,40,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603887,Observational Astronomy Meeting,Science,,4/12/2024,1,30,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jeff Cooke,Science,,4/12/2024,1,50,,2024, +CIERA - CIERA Connections,Future Leaders|Academic Seminars,612570,STEM Careers in the Public Sector: from National Labs to Police Accountability to the Federal Government.,Future Leaders|Interdisciplinary|Data Science & Computing,,4/15/2024,1,40,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610662,"Astrophysics Seminar: Ted Bergin: ""Linking Planet Formation to Exoplanet Composition""",Science,Exoplanets & the Solar System,4/16/2024,1,50,CIERA Cafe,2024, +CIERA - Software Tutorials,Future Leaders,612713,Introduction to Databases II,Future Leaders|Data Science & Computing,,4/17/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Theory Group Meetings,Academic Seminars,603925,CIERA Theory Group,Science,,4/18/2024,1,40,CIERA Cafe,2024, +CIERA - Special Public Events,Future Leaders|Education,,Baxter Symposium 2024,Education|Outreach|Interdisciplinary,,4/18/2024,1,35,Dearborn Observatory|NU Allen Center,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603888,Observational Astronomy Meeting,Science,,4/19/2024,1,30,CIERA Cafe,2024, +CIERA - CROCS,Public Outreach|Education,,CROCS,Future Leaders|Outreach|Education,Other,4/20/2024,1,16,"NU Academy, Chicago, Il",2024, +CIERA - Community Events,Community Events,607537,Tea Time,Interdisciplinary,,4/22/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603849,CIERA Journal Club,Science,,4/23/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610663,Astrophysics Seminar:Diana Powell: TBA,Science,,4/23/2024,1,50,CIERA Cafe,2024, +CIERA - Theory Group Meetings,Academic Seminars,603926,CIERA Theory Group,Science,,4/25/2024,1,40,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,603889,Observational Astronomy Meeting,Science,,4/26/2024,1,30,CIERA Cafe,2024, +CIERA - Astronomer Evenings,Public Outreach,606531,CIERA Astronomer Evenings,Outreach,,4/26/2024,1,15,Dearborn Observatory,2024, +CIERA - Community Events,Community Events,607538,Tea Time,Interdisciplinary,,4/29/2024,1,,CIERA 8th floor,2024, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,611553,"CIERA Mentoring Lunch: ""Building Inclusive Graduate Programs - A Pilot in Physics""",,,4/29/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,603850,CIERA Journal Club,Science,,4/30/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610664,Astrophysics Seminar:Scott Ransom: TBA,Science,,4/30/2024,1,50,CIERA Cafe,2024, +CIERA - Software Tutorials,Future Leaders,,Introduction to Web Development with PHP,Future Leaders|Data Science & Computing,,5/1/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,5/2/2024,1,40,CIERA Cafe,2024, +CIERA - CIERA Connections,Future Leaders,,"Dan Abramov, ""Navigating the Cosmos: Lessons Learned for a career in Astrophysics, Planetary Science, and Aerospace Industries""",Future Leaders|Interdisciplinary,,5/6/2024,1,27,CIERA,2024, +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,5/6/2024,1,,CIERA 8th floor,2024, +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/7/2024,1,35,CIERA Cafe,2024, +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,5/7/2024,1,,CIERA 8th floor,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,,5/7/2024,1,50,CIERA Cafe,2024, +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap : Pop the Bubbles for Hubble - Happy 34th Birthday,Outreach,Other,5/9/2024,1,22,"Begyle Brewing, 1800 W Cuyler Ave.",2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/10/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,5/13/2024,1,,CIERA 8th floor,2024, +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Thomas Zurbuchen: ""How NASA is Exploring the Secrets of the Universe and Improving Life on Earth: Role of Commercial and International Partnerships""",Interdisciplinary|Science,Other,5/13/2024,1,70,CIERA Cafe,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LIGO Collaboration Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,5/13/2024,2,,CIERA,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Reynolds,Science,,5/14/2024,1,50,,2024, +CIERA - Software Tutorials,Future Leaders,,Build a PHP website and/or database workshop,Future Leaders|Data Science & Computing,,5/15/2024,1,,"CIERA, 7th floor, Rubin Room",2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/17/2024,1,30,CIERA Cafe,2024, +CIERA - Annual Public Lecture Series,Public Outreach,,"Astronomy Night Out featuring Caitlin Witt, ""Tuning into the Cosmic Symphony: Pulsar Timing, the Gravitational Wave Background, and Beyond""",Outreach|Education,Gravitational Waves & Multi-Messenger Astronomy,5/17/2024,1,195,Tech Lecture Room 3,2024, +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/21/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marla Geha,Science,,5/21/2024,1,50,,2024, +CIERA - CIERA Connections,Future Leaders,,"Tom Ilyevksy and Tayler Jennings, ""From Academic to Quantitative Research at IMC Trading""",Future Leaders|Interdisciplinary,,5/22/2024,1,54,CIERA Cafe,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/24/2024,1,30,CIERA Cafe,2024, +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/28/2024,1,35,CIERA Cafe,2024, +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pascale Garaud,Science,,5/28/2024,1,50,,2024, +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,5/31/2024,1,20,Dearborn Observatory,2024, +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Mentorship, the Key to Success Workshop",,,6/3/2024,1,,CIERA Cafe,2024, +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,6/4/2024,1,,CIERA 8th floor,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,JointNU-UChicago Galaxy Formation Meeting,Science,Galaxies & Cosmology,6/5/2024,1,,CIERA,2024, +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,6/7/2024,1,30,CIERA Cafe,2024, +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,6/10/2024,1,,CIERA 8th floor,2024, +CIERA - Special Seminars,Academic Seminars,,"CIERA Special Seminar, Aditya Vijaykumar - ""Probing the host of environments of compact binaries""",Science,Other,6/11/2024,1,40,CIERA,2024, +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,CMC/COSMIC Collaboration Meeting,Science|Data Science & Computing|Interdisciplinary,,6/13/2024,2,,CIERA,2024, +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,6/18/2024,1,,CIERA 8th floor,2024, +CIERA - Social Justice Meetings,Future Leaders,,CIERA Mentor Training Workshop,,,6/19/2024,2,,"CIERA 7th Floor, 7-600",2024, +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,6/24/2024,1,,CIERA 8th floor,2024, +CIERA - Astronomer Evenings,Public Outreach,606531,CIERA Astronomer Evenings,Outreach,,6/28/2024,1,,Dearborn Observatory,2024, +,,,,,,,,,,, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, +,,,,,,,,,,1900, diff --git a/visit_dash_lib/events-live-other.csv b/visit_dash_lib/events-live-other.csv new file mode 100644 index 0000000..da6ad30 --- /dev/null +++ b/visit_dash_lib/events-live-other.csv @@ -0,0 +1,1608 @@ +Calendar Group,Event Type Tags,id,Title,Category,Research Topic,Date,Duration,Attendance,Location,Year +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Bennett,Science,,9/27/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Baganoff,Science,,10/11/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Lombardi,Science,,10/20/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brad Peterson,Science,,11/8/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ned Wright,Science,,11/28/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Adrienne Cool,Science,,12/5/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bill Watson,Science,,12/13/2001,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Grindlay,Science,,2/27/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andreas Zezas,Science,,3/4/2002,1,20,,2002 +CIERA - Special Seminars,Academic Seminars,,Andreas Zezas,Science,,3/4/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Armitage,Science,,3/8/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maha Ashour-Abdalla,Science,,3/14/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Derck Massa,Science,,3/14/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Donald Lubowich,Science,,3/28/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Douglas Heggie,Science,,4/11/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Merritt,Science,,4/19/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ronald Webbink,Science,,5/2/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Frank Marshall,Science,,5/9/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Duncan Lorimer,Science,,5/12/2002,1,20,,2002 +CIERA - Special Seminars,Academic Seminars,,Duncan Lorimer,Science,,5/13/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Renu Malhotra,Science,,5/17/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,5/20/2002,1,20,,2002 +CIERA - Special Seminars,Academic Seminars,,Marc Freitag,Science,,5/20/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Fregeau,Science,,5/29/2002,1,20,,2002 +CIERA - Special Seminars,Academic Seminars,,John Fregeau,Science,,5/29/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Roger Blandford,Science,,5/30/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Ford,Science,,5/30/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eugene Chiang,Science,,5/31/2002,1,20,,2002 +CIERA - Special Seminars,Academic Seminars,,Eric Ford,Science,,5/31/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Roger Dixon,Science,,6/6/2002,1,20,,2002 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Hughes,Science,,9/23/2002,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Scott Hughes,Science,,9/23/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,10/2/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Timbie,Science,,10/8/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eve Ostriker,Science,,10/22/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Patrick Slane,Science,,10/29/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,You-Hua Chu,Science,,11/12/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Matzner,Science,,11/19/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Muno,Science,,12/16/2002,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Mike Muno,Science,,12/16/2002,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Don Cox,Science,,1/14/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Philipp Podsiadlowski,Science,,1/23/2003,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Philipp Podsiadlowski,Science,,1/23/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander Heger,Science,,2/18/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ray Jayawardhana,Science,,2/25/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yousaf Butt,Science,,3/4/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Raga,Science,,3/11/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Smutko,Science,,4/15/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Wardle,Science,,4/17/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Ricker,Science,,4/22/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rebecca Bernstein,Science,,4/29/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Walter Lewin,Science,,5/8/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Pound,Science,,5/20/2003,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Milos Milosavljevic,Science,,6/9/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Milos Milosavljevic,Science,,6/10/2003,1,20,,2003 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew King,Science,,6/10/2003,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Andrew King,Science,,6/10/2003,1,20,,2003 +CIERA - Special Seminars,Academic Seminars,,Tom Maccarone,Science,,9/30/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Maccarone,Science,,10/1/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Gallagher,Science,,10/14/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joesph Weingertner,Science,,10/21/2003,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Marc Freitag,Science,,10/26/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amy Barger,Science,,10/28/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steven Federman,Science,,11/4/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marc Freitag,Science,,11/5/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pat Hartigan,Science,,11/11/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christopher Kochanek,Science,,11/13/2003,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Christopher Kochanek,Science,,11/13/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Eggleton,Science,,12/2/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christopher Deloye,Science,,12/4/2003,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Christopher Deloye,Science,,12/4/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Caty Pilachowski,Science,,12/9/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Asaf Pe'er,Science,,12/12/2003,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Asaf Pe'er,Science,,12/12/2003,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Lyne,Science,,1/20/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Walker,Science,,1/20/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ricardo Demarco,Science,,2/3/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dwarkadas,Science,,2/5/2004,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Vikram Dwarkadas,Science,,2/5/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thomas Pannuti,Science,,2/10/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrea Ghez,Science,,2/17/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carlo Graziani,Science,,2/24/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Prochaska,Science,,3/2/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Deepto Chakrabarty,Science,,3/13/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Tumlinson,Science,,3/30/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sarah Church,Science,,4/20/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luigi Stella,Science,,4/29/2004,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Luigi Stella,Science,,4/29/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Arieh Konigl,Science,,5/4/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kinwah Wu,Science,,5/5/2004,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Kinwah Wu,Science,,5/5/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Dodelson,Science,,5/11/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Durisen,Science,,5/18/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Feng Yuan,Science,,5/20/2004,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Feng Yuan,Science,,5/20/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Derek Fox,Science,,5/27/2004,1,20,,2004 +CIERA - Special Seminars,Academic Seminars,,Derek Fox,Science,,5/27/2004,1,20,,2004 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Avi Loeb,Science,,9/3/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Ford,Science,,9/23/2004,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Eric Ford,Science,,9/23/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrey Kravtsov,Science,,9/28/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Rich,Science,,10/5/2004,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Mike Muno,Science,,10/13/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nergis Mavalvala,Science,,10/21/2004,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Nergis Mavalvala,Science,,10/22/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris DePree,Science,,11/2/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sara Ellison,Science,,11/9/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Abel,Science,,11/12/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Muno,Science,,11/13/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ingrid Stairs,Science,,11/16/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Rupen,Science,,11/23/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Proga,Science,,11/30/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Geoff Bower,Science,,12/8/2004,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Geoff Bower,Science,,12/8/2004,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gianfranco Bertone,Science,,1/18/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shiho Kobayashi,Science,,1/19/2005,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Shiho Kobayashi,Science,,1/19/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bryan Gaensler,Science,,1/25/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bob Benjamin,Science,,2/3/2005,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Bob Benjamin,Science,,2/4/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Douglas Welch,Science,,2/8/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Crutcher,Science,,2/15/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dierdre Shoemaker,Science,,2/28/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Hamilton,Science,,3/8/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Holger Baumgardt,Science,,3/10/2005,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Holger Baumgardt,Science,,3/10/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rosalba Perna,Science,,3/15/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hannah Jang-Condell,Science,,3/29/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carlos Pena-Garay,Science,,4/6/2005,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Carlos Pena-Garay,Science,,4/6/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joseph Patterson,Science,,4/11/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Barry Barish,Science,,4/20/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amaya Moro-Martin,Science,,4/27/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Neufeld,Science,,5/3/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Ransom,Science,,5/9/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Benjamin McCall,Science,,5/17/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sera Markoff,Science,,5/24/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paulo Friere,Science,,5/26/2005,1,20,,2005 +CIERA - Special Seminars,Academic Seminars,,Paulo Freire,Science,,5/26/2005,1,20,,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rocky Kolb,Science,,5/31/2005,1,20,,2005 +CIERA - Conferences/Collab Meetings,Conferences,,MODEST-6,Science,Stellar Dynamics & Stellar Populations,8/29/2005,3,98,Evanston,2005 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Greg Sloan,Science,,9/22/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Martin Houde,Science,,9/27/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Kaaret,Science,,10/11/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Winn,Science,,10/14/2005,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Josh Winn,Science,,10/14/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Clem Pryke,Science,,10/18/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mordecai MacLow,Science,,11/1/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Knox Long,Science,,11/8/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Carl Heiles,Science,,11/15/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vicky Kaspi,Science,,11/22/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Barbara Whitney,Science,,11/29/2005,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stratos Boutloukos,Science,,1/10/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Stratos Boutloukos,Science,,1/10/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tamara Bogdanovic,Science,,1/12/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Tamara Bogdanovic,Science,,1/12/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Gnedin,Science,,1/17/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shami Chatterjee,Science,,1/24/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michela Mapelli,Science,,1/27/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Michela Mapelli,Science,,1/27/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alycia Weinberger,Science,,1/31/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Truran,Science,,2/14/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kayhan Gultekin,Science,,2/16/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Kayhan Gultekin,Science,,2/17/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dave Strickland,Science,,2/21/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Krumholz,Science,,3/8/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Monica Valluri,Science,,3/16/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Monica Valluri,Science,,3/16/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Re'em Sari,Science,,3/29/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Re'em Sari,Science,,3/29/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Lovelace,Science,,4/11/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Wolszczan,Science,,4/18/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike A'Hearn,Science,,4/25/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Riccardo Giovanelli,Science,,5/2/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robert Millis,Science,,5/4/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alex Lazarian,Science,,5/9/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yanqin Wu,Science,,5/11/2006,1,25,,2006 +CIERA - Special Seminars,Academic Seminars,,Yanqin Wu,Science,,5/11/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Chung,Science,,5/16/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Youdin,Science,,5/23/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Darek Lis,Science,,5/30/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pau Amaro-Seoane,Science,,7/25/2006,1,25,,2006 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephan Meyer,Science,,9/26/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alberto Vecchio,Science,,9/30/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stanislav Boldyrev,Science,,10/3/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tiziana Di Matteo,Science,,10/10/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Eracleous,Science,,10/11/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stan Peale,Science,,10/23/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tal Alexander,Science,,10/25/2006,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Tal Alexander,Science,,10/25/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matthew Bailes,Science,,10/26/2006,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Matthew Bailes,Science,,10/26/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Snezana Stanimirovic,Science,,10/31/2006,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Loren Hoffman,Science,,11/2/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Loren Hoffman,Science,,11/3/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marta Volonteri,Science,,11/14/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ed Thommes,Science,,11/14/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jennifer Hoffman,Science,,11/15/2006,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Ed Thommes,Science,,11/15/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hiroshi Matsuo,Science,,11/28/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natasha Ivanova,Science,,12/10/2006,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard Edgar,Science,,1/11/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Richard Edgar,Science,,1/12/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Avery Broderick,Science,,1/18/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Avery Broderick,Science,,1/18/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James de Buizer,Science,,1/20/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Marrone,Science,,1/23/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kristen Menou,Science,,1/30/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,2/1/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,2/1/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilya Mandel,Science,,2/9/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Ilya Mandel,Science,,2/9/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nuria Calvet,Science,,2/13/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shri Kulkarni,Science,,2/15/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Shri Kulkarni,Science,,2/15/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Seth Redfield,Science,,2/20/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jimmy Irwin,Science,,2/27/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vasiliki Pavlidou,Science,,3/1/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Vasiliki Pavlidou,Science,,3/1/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Becklin,Science,,3/5/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mario Juric,Science,,3/15/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Mario Juric,Science,,3/15/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leo Blitz,Science,,3/27/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kostas Tassis,Science,,3/29/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Kostas Tassis,Science,,3/29/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Charbonneau,Science,,4/4/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Beacom,Science,,4/17/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Debra Fischer,Science,,4/24/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gregory Sivakoff,Science,,4/26/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Gregory Sivakoff,Science,,4/26/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mary Putman,Science,,5/1/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,5/1/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Steffen,Science,,5/3/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Jason Steffen,Science,,5/3/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hiranya Peiris,Science,,5/8/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,5/14/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jonathan Tan,Science,,5/15/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephen Zepf,Science,,5/17/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Stephen Zepf,Science,,5/17/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Watson,Science,,5/22/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Owen,Science,,5/26/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Ben Owen,Science,,5/26/2007,1,25,,2007 +CIERA - Special Seminars,Academic Seminars,,Ashley Ruiter,Science,,5/27/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Ruiter,Science,,5/28/2007,1,25,,2007 +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems International Conference,Science,Exoplanets & the Solar System,6/25/2007,5,195,"Santorini, Greece",2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Wardle,Science,,7/31/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Milind Diwan,Science,,8/3/2007,1,25,,2007 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fritz Benedict,Science,,10/2/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Saul Rappaport,Science,,10/8/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Goldsmith,Science,,10/16/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilya Mandel,Science,,10/23/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Scoville,Science,,10/30/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sean Andrews,Science,,11/6/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Holger Baumgardt,Science,,11/12/2007,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Holger Baumgardt,Science,,11/12/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alicia Soderberg,Science,,11/13/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Athol Kemball,Science,,11/20/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Al Wootten,Science,,11/27/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Aaron Chou,Science,,12/4/2007,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Monica Valluri,Science,,1/15/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fabian Heitsch,Science,,1/22/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vasilis Paschalidis,Science,,1/24/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Vasilis Paschalidis,Science,,1/24/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gijs Roelofs,Science,,2/6/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Diana Valencia,Science,,2/14/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Diana Valencia,Science,,2/14/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Adams,Science,,2/19/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natalia Ivanova,Science,,2/25/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Natalia Ivanova,Science,,2/25/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Haffner,Science,,2/26/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Chuss,Science,,3/4/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steffen Knollmann,Science,,3/5/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Steffen Knollmann,Science,,3/5/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stelios Kazantzidis,Science,,3/11/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michele Trenti,Science,,3/19/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Michele Trenti,Science,,3/19/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brenda Matthews,Science,,4/8/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Patrick Brady,Science,,4/8/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniela Calzetti,Science,,4/15/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Richard White,Science,,4/22/2008,1,25,,2008 +CIERA - Special Seminars,Academic Seminars,,Daniel Fabrycky,Science,,4/23/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Massimo Marengo,Science,,5/6/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anthony Piro,Science,,5/13/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Manuela Campanelli,Science,,6/3/2008,1,25,,2008 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Haffner,Science,,9/23/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Jackson,Science,,9/30/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anuj Sarma,Science,,10/7/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ramesh Narayan,Science,,10/14/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike Gladders,Science,,10/21/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Glenn Van de Ven,Science,,11/11/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brant Robertson,Science,,11/18/2008,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jim Braatz,Science,,1/13/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,James Miller-Jones,Science,,1/20/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Baker,Science,,2/10/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Tripp,Science,,2/17/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jungyeon Cho,Science,,2/24/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Grace Wolf-Chase,Science,,3/3/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ed Chambers,Science,,3/10/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Clem Pryke,Science,,4/7/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maxim Lyutikov,Science,,4/21/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,TJ Cox,Science,,4/28/2009,1,25,,2009 +CIERA - Special Seminars,Academic Seminars,,Benjamin Knispel,Science,,4/28/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Clements,Science,,5/5/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Hsiao-Wen Chen,Science,,5/12/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ulysses Sofia,Science,,5/19/2009,1,25,,2009 +CIERA - Special Seminars,Academic Seminars,,Alberto Sesana,Science,,5/22/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lucy Fortson,Science,,6/2/2009,1,25,,2009 +CIERA - Special Seminars,Academic Seminars,,Sherry Suyu,Science,,6/12/2009,1,25,,2009 +CIERA - Special Seminars,Academic Seminars,,Natalie Hinkel,Science,,7/22/2009,1,25,,2009 +CIERA - Special Seminars,Academic Seminars,,John Fregeau,Science,,8/29/2009,1,25,,2009 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Enrico Ramirez-Ruiz,Science,,9/22/2009,1,NaN,,2010 +CIERA - Special Seminars,Academic Seminars,,Smadar Naoz,Science,,9/23/2009,1,NaN,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paolo Gondolo,Science,,9/29/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shirley Ho,Science,,10/6/2009,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Tim Linden,Science,,10/7/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bruce Balick,Science,,11/3/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Scott Gaudi,Science,,11/10/2009,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Ann Hornschemeier,Science,,11/12/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Volker Bromm,Science,,11/17/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steinn Sigurdsson,Science,,11/24/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alessia Gualandris,Science,,11/30/2009,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zhi-Yun Li,Science,,12/8/2009,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Aaron Geller,Science,,1/11/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Koester,Science,,1/12/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Peter Anders,Science,,1/13/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eugene Chiang,Science,,1/17/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Enrico Ramirez-Ruiz,Science,,1/18/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Qizhou Zhang,Science,,1/26/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,B�lent Kiziltan,Science,,2/1/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,B�lent Kiziltan,Science,,2/1/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Charles Gammie,Science,,2/9/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,C. Barth Netterfield,Science,,2/23/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Sambaran Banerjee,Science,,2/23/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jay Strader,Science,,3/2/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Ravikumar Kopparapu,Science,,3/2/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luis Reyes,Science,,3/30/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sebastian Heinz,Science,,4/6/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena D'Onghia,Science,,4/13/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Lingzhen Zeng,Science,,4/14/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dawn Erb,Science,,4/20/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Rasia,Science,,4/27/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andy Fruchter,Science,,5/4/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Marta Volonteri,Science,,5/6/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fabian Heitsch,Science,,5/11/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Panayiotis Tzanavaris,Science,,5/13/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Haggi Perets,Science,,5/20/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,Charles Bailyn,Science,,5/20/2010,1,30,,2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dawrkadasl,Science,,6/1/2010,1,30,,2010 +CIERA - Special Seminars,Academic Seminars,,James Guillochon,Science,,6/11/2010,1,30,,2010 +CIERA - Conferences/Collab Meetings,Conferences,,"International Conference on Binaries - ""Binary Star Evolution: Mass Loss, Accretion and Mergers""",Science,Life and Death of Stars,6/22/2010,4,107,"Mykonos, Greece",2010 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Moshe Elitzur,Science,,9/25/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter Goldreich,Science,,10/5/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marusa Bradac,Science,,10/12/2010,1,30,,2011 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 2nd Annual Public Lecture by Dr. Maria Zuber, ""The Warped Side of our Universe: From the Big Bang to Black Holes and Gravitational Waves""",Outreach,Black Holes & Dead Stars,10/18/2010,1,,Fisk Hall,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kip Thorne,Science,,10/18/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Luis Ho,Science,,10/26/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Steve Kawaler,Science,,11/2/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Pierpaoli,Science,,11/9/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Paul Martini,Science,,11/16/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Emily Rauscher,Science,,11/23/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robyn Sanderson,Science,,11/30/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Fabrycky,Science,,12/7/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Martin Elvis,Science,,12/14/2010,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Chang,Science,,1/14/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Doug Clowe,Science,,1/18/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Johnathan Mitchell,Science,,1/25/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brett Lehmer,Science,,1/31/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Dame,Science,,2/8/2011,1,30,,2011 +CIERA - Special Seminars,Academic Seminars,,Tom Dame,Science,,2/8/2011,1,30,,2011 +CIERA - Special Seminars,Academic Seminars,,Elizabeth Hicks,Science,,2/11/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eric Herbst,Science,,2/15/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marco Fatuzzo,Science,,2/22/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,,3/1/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nathan Kaib,Science,,3/8/2011,1,30,,2011 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Edward Seidel: ""The Data and Compute-Driven Transformation of Modern Science""",Data Science & Computing|Science|Interdisciplinary,Other,3/10/2011,1,50,L211,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marcel Agueros,Science,,3/29/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elizabeth Blanton,Science,,4/12/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,David Kaplan,Science,,4/19/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nico Yunes,Science,,4/26/2011,1,30,,2011 +CIERA - Special Seminars,Academic Seminars,,Laura Blecha,Science,,4/27/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Takeshi Oka,Science,,5/3/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dong Lai,Science,,5/10/2011,1,30,,2011 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Jim Kasting: ""How to Find a Habitable Planet""",Science|Interdisciplinary,Exoplanets & the Solar System,5/16/2011,1,50,Ryan Auditorium,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ellen Zweibel,Science,,5/24/2011,1,30,,2011 +CIERA - Special Seminars,Academic Seminars,,Keren Sharon,Science,,5/26/2011,1,30,,2011 +CIERA - Special Seminars,Academic Seminars,,Duncan Forgan,Science,,6/2/2011,1,30,,2011 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Boaz Katz,Science,,6/6/2011,1,30,,2011 +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,CIERA's Inaugural Conference: The Future of Astronomy; Fellows at the Frontiers of Science,Interdisciplinary|Science,Other,8/31/2011,4,100,CIERA,2011 +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems II International Conference,Science,Exoplanets & the Solar System,9/11/2011,7,328,"Moran, Wyoming",2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dan Hooper,Science,,9/20/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Eliot Quataert,Science,,9/27/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Cornelia Lang,Science,,10/4/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Susmita Chakravorty,Science,,10/6/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mitchell C. Begelman,Science,,10/11/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Mitchell C. Begelman,Science,,10/11/2011,1,30,,2012 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Ray Jayawardhana: ""Characterizing Exoplanets""",Science|Interdisciplinary,Exoplanets & the Solar System,10/18/2011,1,50,L211,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nick Moeckel,Science,,10/25/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Snezana Prodan,Science,,10/26/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Phillip Zukin,Science,,10/28/2011,1,30,,2012 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 3rd Annual Public Lecture, Dr. Robert Kirshner - ""Dark Energy and the Accelerating Universe: Einstein's Blunder Undone""",Outreach|Science,Galaxies & Cosmology,11/1/2011,1,,Tech - Ryan Auditorium,2012 +CIERA - Special Seminars,Academic Seminars,,Manjari Bagchi,Science,,11/3/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matija Cuk,Science,,11/8/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Rich Plotkin,Science,,11/14/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ian Dobbs-Dixon,Science,,11/15/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Ann-Marie Madigan,Science,,11/17/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Adrienne Cool,Science,,11/21/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Julie McEnery,Science,,11/22/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matt Hedman,Science,,11/29/2011,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Eva Ntormousi,Science,,11/29/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brad Cenko,Science,,12/6/2011,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thiem Hoang,Science,,1/17/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Junfeng Wang,Science,,1/17/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Diana Valencia,Science,,1/26/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Kristen Menou,Science,,1/26/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ted von Hippel,Science,,2/7/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Ben Lackey,Science,,2/9/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Chris Wegg,Science,,2/9/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Claire Max,Science,,2/14/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Craig Heinke,Science,,3/1/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Craig Heinke,Science,,3/1/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ranga-Ram Chary,Science,,3/6/2012,1,30,,2012 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Cecilia R. Aragon, University of Washington, Seattle, WA +Surfing the Data Tsunami: Computing, Astrophysics, and eScience",Interdisciplinary|Data Science & Computing,Other,3/13/2012,1,50,M345,2012 +CIERA - Special Seminars,Academic Seminars,,Hannah Jang-Condell,Science,,3/15/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Darek Lis,Science,,3/26/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Casey Lisse,Science,,3/29/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Philip Marcus,Science,,4/17/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Tyson Littenberg,Science,,4/18/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sam Finn,Science,,4/25/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Nikta Amiri,Science,,4/26/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Adams,Science,,5/1/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Margaret Hanson,Science,,5/8/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tamara Rogers,Science,,5/15/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Jeff Andrews,Science,,5/16/2012,1,30,,2012 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Don Figer, Rochester Institute of Technology +Single-photon Array Detectors",Interdisciplinary|Science,Other,5/22/2012,1,50,G21,2012 +CIERA - Special Seminars,Academic Seminars,,Jeremy Sepinsky,Science,,5/23/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Simona Vegetti,Science,,5/29/2012,1,30,,2012 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Bill Cotton,Science,,6/5/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Mark Wardle,Science,,6/21/2012,1,30,,2012 +CIERA - Special Seminars,Academic Seminars,,Richard de Grijs,Science,,9/14/2012,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gordon Richards,Science,,9/25/2012,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brett Gladman,Science,,10/2/2012,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Bekki Dawson,Science,,10/4/2012,1,20,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ethan Vishniac,Science,,10/9/2012,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sean T. McWilliams,Science,,10/11/2012,1,20,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ali Vanderveld,Science,,10/16/2012,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Sara Ellison,Science,,10/23/2012,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tim Morton,Science,,10/25/2012,1,20,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fausto Cattaneo,Science,,10/30/2012,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jeremy Goodman,Science,,11/6/2012,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tim Linden,Science,,11/8/2012,1,20,,2013 +CIERA - Special Seminars,Academic Seminars,,Belinda Wilkes,Science,,11/12/2012,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jon Jenkins,Science,,11/13/2012,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jill P. Naiman,Science,,11/14/2012,1,20,,2013 +CIERA - Special Seminars,Academic Seminars,,John W. Hewitt,Science,,11/26/2012,1,30,,2013 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Alyssa Goodman, Harvard University The Close Relationship between Heart Disease and Sea Monsters (or, why good high-dimensional data visualization can solve almost any problem!)",Interdisciplinary|Data Science & Computing,Other,11/30/2012,1,50,F160,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Josh Faber,Science,,12/6/2012,1,20,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Kaitlin Kratter,Science,,1/14/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Kaitlin Kratter,Science,,1/14/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Claude-Andr� Faucher-Gigu�re ,Science,,1/17/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Aristotle Socrates,Science,,1/22/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,John E. Vaillancourt,Science,,1/22/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Shane Davis,Science,,1/28/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Bence Kocsis,Science,,1/31/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leslie Rogers,Science,,2/4/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Leslie Rogers,Science,,2/4/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jacqueline Radigan,Science,,2/7/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Aaron Boley,Science,,2/7/2013,1,30,,2013 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 4th Annual Public Lecture, Dr. John M. Grunsfeld - ""Science@NASA""",Outreach|Interdisciplinary,Other,2/19/2013,1,,Tech - Ryan Auditorium,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amber Straughn,Science,,2/26/2013,1,30,,2013 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: David Hogg, New York University +Astronomy, Machine Learning, and Applied Math: The Astronomer's Theory of Everything",Interdisciplinary|Data Science & Computing,Other,3/5/2013,1,50,F160,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josh Carter,Science,,3/12/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Andrew Youdin,Science,,3/13/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christine Jones-Forman,Science,,3/19/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Andrew Brown,Science,,4/8/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Fabrycky,Science,,4/9/2013,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexandros Gianninas,Science,,4/11/2013,1,20,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Lacy,Science,,4/23/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Leo Singer,Science,,4/30/2013,1,30,,2013 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Fabio Antonini,Science,,4/30/2013,1,20,,2013 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Tim Slater, University of Wyoming Excellence in Higher Education Endowed Chair of Science Education +Are You Really Teaching If No One is Learning? Impact of Discipline-based Education Research",Interdisciplinary|Education,Other,5/6/2013,1,50,F160,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Enrico Vesperini,Science,,5/14/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Neil Cornish,Science,,5/16/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Dieter Hartmann,Science,,5/23/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Fred Ciesla,Science,,5/28/2013,1,30,,2013 +CIERA - Special Seminars,Academic Seminars,,Jorg Weingrill,Science,,8/30/2013,1,30,,2013 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Neal Evans,Science,,10/1/2013,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Elena Gallo,Science,,10/8/2013,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Konstantin Batygin,Science,,10/15/2013,1,40,,2014 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Benjamin Oppenheimer,Science,,10/17/2013,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rosalba Perna,Science,,10/22/2013,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Karen Yang,Science,,11/5/2013,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Chris Hayward,Science,,11/7/2013,1,35,,2014 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Mario Juric, Large Synoptic Survey Telescope Corporation +Large Synoptic Survey Telescope: Entering the Era of Petascale Optical Astronomy",Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,11/12/2013,1,50,F160,2014 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sijing Shen,Science,,11/15/2013,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Linda Strubbe,Science,,11/19/2013,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Natalie Gosnell,Science,,11/20/2013,1,35,,2014 +CIERA - Special Seminars,Academic Seminars,,Eric Gaidos,Science,,11/26/2013,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brian Metzger,Science,,12/3/2013,1,40,,2014 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Robyn Sanderson,Science,,12/13/2013,1,30,,2014 +CIERA - Special Seminars,Academic Seminars,,Eliot Quataert,Science,,1/8/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chuck Hailey,Science,,1/14/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jenny Greene,Science,,1/21/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pascale Garaud,Science,,1/27/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Simeon Bird,Science,,1/27/2014,1,35,,2014 +CIERA - Special Seminars,Academic Seminars,,Katherine Deck,Science,,1/28/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jason Dexter,Science,,2/11/2014,1,40,,2014 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Tony Tyson, University of California, Davis / Large Synoptic Survey Telescope +LSST and the Physics of the Dark Universe",Interdisciplinary|Science|Data Science & Computing,Other,2/17/2014,1,50,F160,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrey Kravtsov,Science,,2/25/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Xuening Bai,Science,,2/26/2014,1,35,,2014 +CIERA - Special Seminars,Academic Seminars,,Kat Barger,Science,,2/27/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Neal Dalal,Science,,3/4/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Quinn Konopacky,Science,,3/11/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew Howard,Science,,3/18/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Anil Seth,Science,,3/31/2014,1,40,,2014 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 5th Annual Public Lecture by Dr. Maria Zuber, introducing ""New Moon""",Outreach,Exoplanets & the Solar System,4/3/2014,1,,Tech - Ryan Auditorium,2014 +CIERA - Annual Public Lecture Series,Public Outreach,606532,CIERA Annual Public Lecture by John M. Grunsfeld,Outreach,,4/3/2014,1,,Tech Ryan Auditorium,2014 +CIERA - Special Seminars,Academic Seminars,,Albert Stebbins,Science,,4/3/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,John Ruhl,Science,,4/8/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Richard de Grijs,Science,,4/9/2014,1,35,,2014 +CIERA - Special Seminars,Academic Seminars,,Abigail Vieregg,Science,,4/21/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Holz,Science,,4/29/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Astrid Lamberts,Science,,5/1/2014,1,35,,2014 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Blakesley Burkhart,Science,,5/2/2014,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Michael Line,Science,,5/6/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Alex Lazarian,Science,,5/6/2014,1,35,,2014 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Josh Bloom, University of California, Berkeley +Inference in Time Domain Astrophysics",Interdisciplinary|Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,5/7/2014,1,60,L211,2014 +CIERA - Special Seminars,Academic Seminars,,Eleni Kalfountzou,Science,,5/9/2014,1,35,,2014 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: David Kipping,Science,,5/9/2014,1,30,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alison Sills,Science,,5/13/2014,1,40,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Laura Lopez,Science,,5/20/2014,1,40,,2014 +CIERA - Special Seminars,Academic Seminars,,Sweta Shah,Science,,5/23/2014,1,35,,2014 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,FIRE (Feedback In Realistic Environments) Galaxy Formation Simulation Workshop,Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,7/25/2014,1,16,Tech,2014 +CIERA - Special Seminars,Academic Seminars,,Kostas Tassis,Science,,7/25/2014,1,35,,2014 +CIERA - Conferences/Collab Meetings,Conferences,,Conference on Next-Generation Telescopes,Interdisciplinary|Science,Other,8/22/2014,1,13,"CIERA, 8th Floor",2014 +CIERA - Special Seminars,Academic Seminars,,Tassos Fragos,Science,,8/22/2014,1,35,,2014 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mike McCourt,Science,,9/23/2014,1,40,,2015 +CIERA - Special Public Events,Public Outreach|Education,,"CIERA helps host Boy Scounts and Families for ""NU STEM and Sports""",Outreach|Education,,9/29/2014,1,80,Dearborn Observatory,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Andrew MacFadyen,Science,,10/6/2014,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ryan Foley,Science,,10/14/2014,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rachel Friesen,Science,,10/21/2014,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Rob Ferdman,Science,,10/23/2014,1,35,,2015 +CIERA - Special Seminars,Academic Seminars,,Laura Sampson,Science,,10/27/2014,1,35,,2015 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: James Stone, Princeton University The Role of Computation in Astrophysical Plasma Dynamics",Interdisciplinary|Data Science & Computing,Black Holes & Dead Stars,10/28/2014,1,50,F160,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Douglas Heggie,Science,,10/29/2014,1,30,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Gongjie Li,Science,,10/30/2014,1,30,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gwen Rudie,Science,,11/3/2014,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Ondrej Pejcha,Science,,11/3/2014,1,35,,2015 +CIERA - Special Public Events,Education,,CIERA participates in OSEP STEM Summit,Education|Interdisciplinary,,11/5/2014,1,260,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Saul Rappaport,Science,,11/10/2014,1,40,,2015 +CIERA - Special Public Events,Public Outreach|Education,,"CIERA Graduate Students run the FUSE workshop for ""Girls do Hack"" Event",Education|Outreach|Interdisciplinary,,11/15/2014,1,80,Adler Planetarium,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jacob Bean,Science,,11/18/2014,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Titos Matsakos,Science,,11/24/2014,1,35,,2015 +CIERA - Special Seminars,Academic Seminars,,Benedikt Diemer,Science,,11/30/2014,1,35,,2015 +CIERA - Special Seminars,Academic Seminars,,Konstantin Pavlovskii,Science,,12/10/2014,1,35,,2015 +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,Postdocs End-of-the-year Presentations,Achievement|Science|Professional Development,,12/15/2014,1,50,CIERA,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Doug Watson,Science,,1/6/2015,1,40,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jing Luan,Science,,1/15/2015,1,30,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alex Richings,Science,,1/15/2015,1,30,,2015 +CIERA - Conferences/Collab Meetings,Conferences,,2015 Aspen Winter Conference: Black Holes in Dense Star Clusters,Science|Interdisciplinary,Black Holes & Dead Stars,1/17/2015,6,91,Aspen Center for Physics,2015 +CIERA - Special Seminars,Academic Seminars,,Maria Cunningham,Science,,1/18/2015,1,35,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mariska Kriek,Science,,1/20/2015,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Frederick Davies,Science,,1/22/2015,1,35,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Monica Turner,Science,,1/22/2015,1,30,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jungyeon Cho,Science,,1/22/2015,1,30,,2015 +CIERA - Special Seminars,Academic Seminars,,Nicholas McConnell,Science,,1/28/2015,1,35,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Serena Repetto,Science,,1/29/2015,1,30,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Joshua Peek,Science,,2/3/2015,1,40,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jeremy Webb,Science,,2/5/2015,1,30,,2015 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Ben McCall, University of Illinois at Urbana-Champaign +Astrochemistry: From H3+ to C60",Interdisciplinary|Science,Other,2/10/2015,1,50,F160,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lucianne Walkowicz,Science,,2/17/2015,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Mark Reid,Science,,3/3/2015,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,James Guillochon,Science,,3/3/2015,1,35,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Edo Berger,Science,,3/5/2015,1,30,,2015 +CIERA - Special Public Events,Public Outreach|Education,,CIERA Postdocs lead 'Mission to Space' workshop during Expanding your Horizons STEM event,,,3/28/2015,1,200,CIERA,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marilena LoVerde,Science,,3/31/2015,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dawn Erb,Science,,4/7/2015,1,40,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Scott Tremaine,Science,,4/9/2015,1,30,,2015 +CIERA - Special Public Events,Public Outreach,,"Dr David Meyer presents ""Exploring the Universe with the Hubble Space Telescope"" for a ""Day with Northwestern""",Outreach,Galaxies & Cosmology,4/18/2015,1,250,1999 University Drive,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Geoffrey Vasil,Science,,4/21/2015,1,40,,2015 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dave Meyer, Northwestern University +Experiencing Hubble in the Classroom and Beyond",Interdisciplinary|Education,Other,4/24/2015,1,30,L211,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Phil Muirhead,Science,,5/7/2015,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Jay Strader,Science,,5/8/2015,1,35,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: David Merritt,Science,,5/8/2015,1,30,,2015 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Pranab Ghosh,Science,,5/8/2015,1,30,,2015 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 6th Annual Public Lecture by Neil deGrasse Tyson ""This Just In: Latest Discoveries in the Universe""",Outreach|Interdisciplinary,Other,5/15/2015,1,500,Tech - Ryan Auditorium,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Edwin Bergin,Science,,5/19/2015,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tom Abel,Science,,5/26/2015,1,40,,2015 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Garth Illingworth,Science,,6/2/2015,1,40,,2015 +CIERA - Special Seminars,Academic Seminars,,Pablo Marchant,Science,,6/2/2015,1,35,,2015 +CIERA - Special Public Events,Public Outreach,,"CIERA Graduate Students take part in ""Summer of Science"" celebration",Outreach,,6/15/2015,1,,Adler Planetarium,2015 +CIERA - Special Public Events,Public Outreach|Education|Future Leaders,,"CIERA Graduates hosts highschool students for ""2015 Opportunities for the Future""",Education|Outreach|Interdisciplinary,,6/27/2015,1,30,Dearborn Observatory,2015 +CIERA - Special Public Events,Future Leaders,,CIERA hosts College of DuPage Astronomy Club for day visit,,,7/10/2015,1,9,CIERA,2015 +CIERA - Special Public Events,Public Outreach,,"Dr Kalogera meets with Office of Research Staff for ""NU Astronomy: Big Data, Telescope Innovation, and the Cosmos""",Outreach|Data Science & Computing|Interdisciplinary,,8/18/2015,1,40,CIERA,2015 +CIERA - Community Events,Future Leaders|Academic Seminars|Community Events,,"CIERA ""Seven Minutes of Science"" Symposium",Professional Development|Interdisciplinary|Data Science & Computing,,9/11/2015,1,12,Tech - Ryan Auditorium,2016 +CIERA - Special Seminars,Academic Seminars,,Adrian Hamers,Science,,9/16/2015,1,35,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zhaohuan Zhu,Science,,9/22/2015,1,40,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ryan Cooke,Science,,9/29/2015,1,40,,2016 +CIERA - Conferences/Collab Meetings,Conferences,,2015 Midwest Relativity Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/2/2015,1,100,"Louis Room, Norris University Center",2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amaury Triaud,Science,,10/6/2015,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,Andrew W. Smith,Science,,10/8/2015,1,35,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tony Piro,Science,,10/13/2015,1,40,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Thayne Currie,Science,,10/20/2015,1,40,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tim Brandt,Science,,10/27/2015,1,40,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Blake Sherwin,Science,,10/29/2015,1,30,,2016 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 7th Annual Public Lecture by Dr Alan Stern: ""New Horizons""",Outreach|Science,Exoplanets & the Solar System,11/3/2015,1,275,Tech - Ryan Auditorium,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Raffaella Margutti,Science,,11/3/2015,1,40,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: John Chisholm,Science,,11/6/2015,1,30,,2016 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dennis Lehmkuhl, Caltech: What Einstein Really Thought About General Relativity",Interdisciplinary|Science,Gravitational Waves & Multi-Messenger Astronomy,11/10/2015,1,75,ITW Classroom,2016 +Development Events,Development/Strategic,,CIERA Dr. Paulsen and graduate student Katie Breivik meet congressmen Bob Dold to review CIERA programs and direction,Interdisciplinary|Outreach,,11/10/2015,1,4,Lake Forest at Elaway Farms,2016 +CIERA - Special Public Events,Public Outreach,,Graduate Student Katie Breivik leads stargazing activity for Adventure Guides,Education|Outreach,,11/10/2015,1,20,Lake Forest,2016 +CIERA - Special Seminars,Academic Seminars,,Tuguldur Sukhbold,Science,,11/11/2015,1,35,,2016 +CIERA - Special Public Events,Education,,"CIERA hosts Boy Scouts for 3rd annual ""NU Stem and Sports Day""",Education|Outreach,,11/12/2015,1,70,Dearborn Observatory,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Greg Sloan,Science,,11/13/2015,1,30,,2016 +CIERA - Special Seminars,Academic Seminars,,John Tobin,Science,,11/16/2015,1,35,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maryam Modjaz,Science,,11/17/2015,1,40,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Shuo Zhang,Science,,11/20/2015,1,30,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Katerina Chatziioannou,Science,,11/20/2015,1,30,,2016 +CIERA - Special Seminars,Academic Seminars,,Morgan MacLeod,Science,,11/23/2015,1,35,,2016 +CIERA - Special Public Events,Education,,Graduate Students speak at High School Women's STEM Event,Education,,11/25/2015,1,30,"Prospect High School, Mt. Prospect Il",2016 +CIERA - Special Public Events,Public Outreach,,2015 Total Lunar Eclipse Party,,,11/27/2015,1,1700,Segal Visitors Center,2016 +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems III International Conference,Science|Interdisciplinary,Exoplanets & the Solar System,11/29/2015,6,347,"Waikoloa Beach Marriott Resort & Spa, Hawaii",2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Yuan Li,Science,,12/1/2015,1,40,,2016 +CIERA - Community Events,Future Leaders|Community Events,,AAAS Fellow Jeremy Ward visits CIERA to speak with Grad Students and Researchers,,,12/4/2015,1,,CIERA,2016 +CIERA - Special Seminars,Academic Seminars,,Tim Brandt,Science,,1/12/2016,1,35,,2016 +CIERA - Special Seminars,Academic Seminars,,Ian Stephens,Science,,1/14/2016,1,35,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michael Tremmel,Science,,1/15/2016,1,30,,2016 +CIERA - Special Seminars,Academic Seminars,,Jennifer Yee,Science,,1/20/2016,1,35,,2016 +CIERA - Special Seminars,Academic Seminars,,Greg Mosby,Science,,1/22/2016,1,35,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Betsy Mills,Science,,1/22/2016,1,30,,2016 +CIERA - Special Seminars,Academic Seminars,,Branimir Sesar,Science,,1/25/2016,1,35,,2016 +CIERA - Special Seminars,Academic Seminars,,Ryan Foley,Science,,1/28/2016,1,35,,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,1/29/2016,1,,Dearborn Observatory,2016 +CIERA - Special Seminars,Academic Seminars,,Raffaella Margutti,Science,,2/1/2016,1,35,,2016 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Olivier Guyon, University of Arizona, College of Optical Sciences +Imaging and Characterizing Habitable Exoplanets with Ground and Space-based Telescopes",Interdisciplinary|Science,Exoplanets & the Solar System,2/3/2016,1,60,Ford ITW,2016 +CIERA - Special Public Events,Education,,Graduate Student Speaker Series,Education|Outreach,,2/9/2016,1,70,Vernon Hills High School,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ben Bar-Or,Science,,2/16/2016,1,40,,2016 +CIERA - Special Public Events,Public Outreach,,"Dr Kalogera speaks on Chicago Network's ""Panel on Space""",Outreach,,2/22/2016,1,150,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Leslie Looney,Science,,2/23/2016,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,Jamil A. Shariff,Science,,2/25/2016,1,35,,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,2/26/2016,1,,Dearborn Observatory,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Julie Hlavacek-Larrondo,Science,,2/29/2016,1,40,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tsevi Mazeh,Science,,3/8/2016,1,40,,2016 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap,Outreach,,3/10/2016,1,75,Smylie Brothers Brewing Co.,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Manos Chatzopoulos,Science,,3/11/2016,1,30,,2016 +CIERA - Special Public Events,Public Outreach,,Northwestern Science Cafe,Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/23/2016,1,80,Firehouse Grill,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,3/25/2016,1,,Dearborn Observatory,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Laura Chomiuk,Science,,3/29/2016,1,40,,2016 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Roger F. Malina, University of Texas at Dallas +How an Astrophysicist Came to Work in a School of Art and Technology: The Role of Hybrid Art-Science Practices Today",Interdisciplinary|Science,Other,4/7/2016,1,50,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alycia Weinberger,Science,,4/12/2016,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,Ethan Vishniac,Science,,4/13/2016,1,35,,2016 +Development Events,Future Leaders,,CIERA presents IDEAS program to future STEM leaders conference,Professional Development|Interdisciplinary|Data Science & Computing,Other,4/20/2016,1,400,"Capitol Hill, DC",2016 +Development Events,Development/Strategic|Future Leaders,,Graduate Student presentation for NSF site visit,Professional Development,,4/21/2016,1,25,Silverman Hall Atrium,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilse Cleeves,Science,,4/26/2016,1,40,,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,4/29/2016,1,,Dearborn Observatory,2016 +CIERA - Special Public Events,Public Outreach,,"CIERA's Aaron Geller presents ""When Art and Science meet"" at college of DuPage ""STEM-CON""",Education|Outreach|Interdisciplinary,Other,4/29/2016,1,1000,College of DuPage,2016 +CIERA - Special Public Events,Public Outreach|Education,,"Take your daughters and sons to work day info session: ""Ripples in Spacetime""",Education|Outreach,,4/30/2016,1,30,Norris University Center,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Mads Sorensen,Science,,5/1/2016,1,30,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Matteo Cantiello,Science,,5/3/2016,1,40,,2016 +CIERA - Special Public Events,Public Outreach,,2016 Mercury Transit,,,5/9/2016,1,40,Dearborn Observatory,2016 +CIERA - Special Public Events,Public Outreach,,(En)Lightning Talks Chicago with Dr Kalogera,Outreach,,5/10/2016,1,200,Chicago History Museum,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Xavier Siemens,Science,,5/10/2016,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,B-G Andersson,Science,,5/12/2016,1,35,,2016 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jeff Andrews,Science,,5/15/2016,1,30,,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Daniel Jontof-Hutter,Science,,5/17/2016,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,Jonathan Stern,Science,,5/23/2016,1,35,,2016 +CIERA - Special Public Events,Public Outreach,,Solar System Symphony with Beinen School of Music,Interdisciplinary|Outreach,,5/24/2016,1,300,Pick-Staiger Concert Hall,2016 +CIERA - Special Public Events,Public Outreach,,Northwestern Science Cafe,Outreach|Science,,5/25/2016,1,70,Firehouse Grill,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,5/27/2016,1,,Dearborn Observatory,2016 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jonathan Trump,Science,,5/31/2016,1,40,,2016 +CIERA - Special Seminars,Academic Seminars,,Juan Diego Soler Pulido,Science,,6/2/2016,1,35,,2016 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Pre O2 Midwest Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,6/3/2016,1,20,CIERA,2016 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,NIAC Kick-Off Meeting,Science,,6/8/2016,1,12,CIERA,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,6/24/2016,1,,Dearborn Observatory,2016 +CIERA - REU,Future Leaders|Education,,CIERA REU Career discussion panel,Professional Development,,7/13/2016,1,,Online,2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,7/29/2016,1,,Dearborn Observatory,2016 +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,LSSTC Data Science Fellowship Program,Data Science & Computing|Interdisciplinary|Professional Development,,8/1/2016,5,20,CIERA,2016 +CIERA - Special Seminars,Academic Seminars,,Evan Schneider,Science,,8/5/2016,1,35,,2016 +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,GNOME Data Analysis Bootcamp,Science|Interdisciplinary|Data Science & Computing,,8/16/2016,1,10,"Evanston, Il",2016 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,8/26/2016,1,,Dearborn Observatory,2016 +CIERA - Special Seminars,Academic Seminars,,Fellows at the Frontiers 2016: Astronomy Research on the Cutting-edge,Science|Interdisciplinary,Other,9/1/2016,1,35,Norris University Center,2017 +CIERA - Special Public Events,Public Outreach|Education,,"4th Annual ""NU STEM and Sports"" outreach event",Education|Outreach,,9/12/2016,1,25,Dearborn Observatory,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Eliza Kempton,Science,,9/15/2016,1,30,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Peter K. G. Williams,Science,,9/20/2016,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Xuening Bai,Science,,9/27/2016,1,40,,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Cliff Johnson,Science,,9/29/2016,1,30,,2017 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,9/30/2016,1,,Dearborn Observatory,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sarah Wellons,Science,,9/30/2016,1,30,,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Matt Payne,Science,,10/6/2016,1,30,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Natalia Storch,Science,,10/11/2016,1,40,,2017 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,10/20/2016,2,10,CIERA,2017 +Development Events,Development/Strategic,,Fall 2016 BoV Meeting,,,10/21/2016,1,9,Tech,2017 +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,Rapid-Fire Research Inauguration,Interdisciplinary|Science,Other,10/26/2016,1,10,CIERA ,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Eve Lee,Science,,10/27/2016,1,30,,2017 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,10/28/2016,1,,Dearborn Observatory,2017 +CIERA - Special Seminars,Academic Seminars,,Elad Steinberg,Science,,10/31/2016,1,35,,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Jacob Simon,Science,,11/4/2016,1,30,,2017 +CIERA - Special Seminars,Academic Seminars,,Benjamin Montet,Science,,11/10/2016,1,35,,2017 +CIERA - Special Seminars,Academic Seminars,,Ondrej Pejcha,Science,,11/14/2016,1,35,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Wen-fai Fong,Science,,11/17/2016,1,40,,2017 +CIERA - Special Seminars,Academic Seminars,,Siyao Xu,Science,,11/17/2016,1,35,,2017 +CIERA - Special Seminars,Academic Seminars,,Wen-fai Fong,Science,,11/17/2016,1,35,,2017 +CIERA - Special Seminars,Academic Seminars,,Francois Foucart,Science,,11/21/2016,1,35,,2017 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,11/25/2016,1,,Dearborn Observatory,2017 +CIERA - Special Seminars,Academic Seminars,,Jennifer van Saders,Science,,11/28/2016,1,35,,2017 +CIERA - Special Seminars,Academic Seminars,,Sasha Tchekhovskoy,Science,,11/30/2016,1,35,,2017 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dave Reitze, LIGO Laboratory, Caltech +Colliding Black Holes & Convulsions in Space-time: The First Observations of Gravitational Waves by LIGO",Interdisciplinary|Science,Gravitational Waves & Multi-Messenger Astronomy,12/1/2016,1,150,L211,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Rasskazov,Science,,12/1/2016,1,30,,2017 +CIERA - Special Public Events,Public Outreach,,"Graduate Students participate in panel for Women in Stem club, Prospect High School",Outreach|Education,,12/8/2016,1,30,"Prospect High School, Mt. Prospect Il",2017 +CIERA - Special Seminars,Academic Seminars,,Rebecca McElroy,Science,,12/8/2016,1,35,,2017 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LIGO Collaborators Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,12/12/2016,1,8,CIERA,2017 +CIERA - Community Events,Community Events|Future Leaders|Academic Seminars,,4th CIERA Research Jamboree,Interdisciplinary|Science,Other,12/14/2016,1,,Dearborn Observatory,2017 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,12/30/2016,1,,Dearborn Observatory,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Robert De Rosa,Science,,1/10/2017,1,40,,2017 +CIERA - Special Public Events,Future Leaders,,CIERA participates in 229th AAS,Achievement|Interdisciplinary,,1/15/2017,1,9,"Grapevine, Texas",2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Zauderer,Science,,1/17/2017,1,40,,2017 +Development Events,Development/Strategic,,Winter 2017 BoV Meeting,,,1/18/2017,1,9,Tech,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tyler Groff,Science,,1/24/2017,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Smadar Naoz,Science,,1/31/2017,1,40,,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alex Lazarian,Science,,2/3/2017,1,30,,2017 +CIERA - Special Seminars,Academic Seminars,,Cullen Blake,Science,,2/6/2017,1,35,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jessica Werk,Science,,2/7/2017,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Dustin Lang,Science,,2/14/2017,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nadia Zakamska,Science,,2/21/2017,1,40,,2017 +CIERA - Special Public Events,Education,,CIERA hosts Astronomy Day professional development,Education,,2/23/2017,1,12,CIERA,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michael Perryman,Science,,2/24/2017,1,30,,2017 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: N. Jeremy Kasdin, Princeton University +Finding and Characterizing Earth 2.0: An Engineering and Astronomy Partnership",Interdisciplinary|Science,,3/1/2017,1,80,F160,2017 +CIERA - Conferences/Collab Meetings,Conferences,,2017 Aspen Winter Conference: Formation and Dynamical Evolution of Exoplanets,Science,Exoplanets & the Solar System,3/26/2017,7,135,Aspen Center for Physics,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Amy Bender,Science,,3/28/2017,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Norman Murray,Science,,4/4/2017,1,40,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jo Bovy,Science,,4/11/2017,1,40,,2017 +CIERA - Special Seminars,Academic Seminars,,Wei Zhu,Science,,4/21/2017,1,35,,2017 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Wei Zhu,Science,,4/21/2017,1,35,,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nicholas Stone,Science,,4/25/2017,1,35,,2017 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 8th Annual Public Lecture, Rainer Wiess: ""Beginning the Exploration of the Universe with Gravitational Waves""",Outreach|Science,Gravitational Waves & Multi-Messenger Astronomy,5/2/2017,1,,Tech Lecture Room 3,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Desika Narayanan,Science,,5/9/2017,1,35,,2017 +CIERA - Special Public Events,Public Outreach,,"CIERA multimedia performance: ""A Shout Across Time""",Outreach|Interdisciplinary,,5/15/2017,1,150,Nichols Concert Hall,2017 +CIERA - Special Seminars,Academic Seminars,,Stephen Zepf,Science,,5/15/2017,1,35,,2017 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dan Foreman-Mackey, University of Washington +How to Find a Transiting Exoplanet: Data-driven Discovery in the Astronomical Time Domain",Interdisciplinary|Science|Data Science & Computing,Exoplanets & the Solar System,5/16/2017,1,60,F160,2017 +CIERA - Special Public Events,Public Outreach,,"CIERA multimedia performance: ""Science Sonification""",Interdisciplinary|Outreach,,5/22/2017,1,75,Lutkin Hall,2017 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nanda Rea,Science,,5/23/2017,1,40,,2017 +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,Supernovae: the LSST Revolution Workshop,Science|Interdisciplinary|Data Science & Computing,Stellar Dynamics & Stellar Populations|Life and Death of Stars,6/1/2017,1,60,Evanston,2017 +CIERA - Special Seminars,Academic Seminars,,Anja Feldmeier-Krause,Science,,6/6/2017,1,35,,2017 +Development Events,Development/Strategic,,Spring 2017 BoV Meeting,,,6/15/2017,1,9,Tech,2017 +CIERA - Special Public Events,Public Outreach,,Graduate Students participate in CTD Opportunities for the Future Family Conference,Education|Outreach,,6/24/2017,1,400,Dearborn Observatory,2017 +CIERA - REU,Future Leaders|Education,,REU careers in Astronomy Panel,Professional Development,,7/31/2017,1,31,CIERA,2017 +CIERA - Astronomy on Tap,Public Outreach,,"""Solar Eclipse of the Heart""",Outreach,Other,8/14/2017,1,100,Begyle Brewing,2017 +CIERA - Special Public Events,,,2017 Total Solar Eclipse,,,8/21/2017,1,550,Tech,2017 +CIERA - Special Seminars,Academic Seminars,,Janet Chen,Science,,8/25/2017,1,35,,2017 +CIERA - Special Seminars,Academic Seminars,,"CIERA Special Seminar: Om Sharan Salafia, ""Where and When: How to Combine Information from the GW Signal and EM Counterpart Models to Inform and Optimize the EM Follow-up Strategy""",Science,Other,9/11/2017,1,35,CIERA,2018 +CIERA - Special Seminars,Academic Seminars,,Om Salafia,Science,,9/11/2017,1,35,,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Greg Taylor: ""Science at Low Frequencies with the Long Wavelength Array""",Science,Other,9/19/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,9/19/2017,1,0,F160,2018 +CIERA - Special Seminars,Academic Seminars,,Adrian Barker: Tidal Flows in Extrasolar Planets,Science,Exoplanets & the Solar System,9/20/2017,1,35,CIERA,2018 +CIERA - Special Seminars,Academic Seminars,,Suzanne Aigrain: Taming the Stochastic: How Gaussian Processes are Transforming Exoplanet Studies,Science|Data Science & Computing,Exoplanets & the Solar System,9/22/2017,1,35,CIERA,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Fabienne Bastien: Convection in Cool Stars, as Revealed through Stellar Brightness Variations",Science,Life and Death of Stars,9/26/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,9/26/2017,1,0,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Chelsea Harris: Modeling Supernova Interaction with Circumstellar Material and Phil Cowperthwaite: Deep Rapid Optical Follow-Up of Gravitational Wave Sources with the Dark Energy Camera,Science,Gravitational Waves & Multi-Messenger Astronomy,9/29/2017,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,9/29/2017,1,25,Dearborn Observatory,2018 +CIERA - Special Seminars,Academic Seminars,,Ian Christie: Modeling Stellar Wind Interactions,Science,Stellar Dynamics & Stellar Populations,10/3/2017,1,35,CIERA,2018 +Development Events,Development/Strategic,,Fall 2017 BoV Meeting,,,10/5/2017,1,9,Tech,2018 +Development Events,Development/Strategic,,Fall 2017 APL Dinner,,,10/5/2017,1,10,Tech,2018 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 9th Annual Public Lecture, Wendy Freedman - ""The Unexpected Universe: Astronomical Telescopes Continue to Reveal New Suprises""",Outreach|Interdisciplinary,Other,10/5/2017,1,300,Cahn Auditorium,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Paz Beniamini: Formation of Double Neutron Stars and Implications for Heavy Element Production,Science,Life and Death of Stars,10/6/2017,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Hanno Rein: ""Formation and stability of planetary systems""",Science,Exoplanets & the Solar System,10/10/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/10/2017,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Matthew Liska: GPU-based GRMHD Simulations of Tilted Black Hole Accretion Disks and Jets,Science|Data Science & Computing,Black Holes & Dead Stars,10/13/2017,1,30,Tech F160,2018 +CIERA - Special Seminars,Academic Seminars,,Payaswini Saikia: The Optical Fundamental Plane of Black Hole Activity,Science,Black Holes & Dead Stars,10/19/2017,1,35,CIERA,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Michael Tremmel: Dancing to ChaNGa: The Formation of Supermassive Black Hole Pairs in Cosmological Simulations and Kristen Garofali: Using High-Mass X-ray Binaries to Probe Massive Binary Evolution,Science,Black Holes & Dead Stars,10/20/2017,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Susan Clark: Magnetism and morphology in the interstellar medium,Science,Life and Death of Stars,10/24/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/24/2017,1,25,F160,2018 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,10/26/2017,1,6,CIERA,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Aleksey Generozov: Formation of X-ray binaries in the Galactic Center via tidal capture,Science,Other,10/27/2017,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,10/27/2017,1,25,Dearborn Observatory,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Frank van den Bosch: ""Dark Matter Substructure: Cosmological Treasure Trove or a Pandora's Box?""",Science,Galaxies & Cosmology,10/31/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,10/31/2017,1,25,F160,2018 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Greg Laughlin, Yale University: Poincar�'s Legacy: Predictions on Time Scales Ranging from Milliseconds to Billions of Years",Interdisciplinary|Science,Other,11/2/2017,1,75,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Pierre Christian,Science,,11/3/2017,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Gregg Hallinan: Imaging All the Sky All the Time in Search of Radio Exoplanets,Science,Exoplanets & the Solar System,11/7/2017,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,11/7/2017,1,25,F160,2018 +CIERA - Special Seminars,Academic Seminars,,Adrian Hamers: Hot Jupiters Driven by High-eccentricity Migration in Globular Clusters,Science,Other,11/8/2017,1,35,CIERA,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vanessa Graber,Science,,11/9/2017,1,40,,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Dan Stevens: Precision Stellar and Planetary Astrophysics with TESS and Gaia,Science|Data Science & Computing,Other,11/17/2017,1,30,Tech F160,2018 +CIERA - Special Public Events,Public Outreach,,COSMOS IN CONCERT: Celestial Suite,Outreach|Interdisciplinary,Galaxies & Cosmology,11/18/2017,1,400,Pick-Staiger Concert Hall,2018 +CIERA - Special Seminars,Academic Seminars,,Benjamin Oppenheimer: The Circumgalactic Medium in EAGLE Simulations: Mass and Dynamics,Science|Data Science & Computing,Galaxies & Cosmology,11/21/2017,1,35,CIERA,2018 +CIERA - Special Public Events,Public Outreach,,"CIERA moderated panel: ""Peering into the Cosmic Maelstrom""",Science|Outreach,Other,11/28/2017,1,200,Tech Lecture Room 3,2018 +CIERA - Special Seminars,Academic Seminars,,Ben Ryan: General Relativistic Radiation Magnetohydrodynamic Simulations of Slowly Accreting Black Holes,Science,Black Holes & Dead Stars,11/30/2017,1,35,CIERA,2018 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Dan Tamayo, University of Toronto's Centre for Planetary Sciences / Canadian Institute for Theoretical Astrophysics +A Million-fold Speedup in the Dynamical Characterization of Multi-planet Systems",Interdisciplinary|Science,Stellar Dynamics & Stellar Populations,12/1/2017,1,40,L211,2018 +CIERA - Special Seminars,Academic Seminars,,Drummond Fielding: A Multi-scale Portrait of the Circumgalactic Medium,Science,Galaxies & Cosmology,12/19/2017,1,35,CIERA,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,Other,1/16/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,1/16/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Damiano Caprioli: The Non-thermal Life of Supernova Remnants and Jonathan Stern,Science,Black Holes & Dead Stars,1/19/2018,1,30,Tech F160,2018 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Konstantin Batygin, California Institute of Technology: Planet Nine from Outer Space: Status Update",Interdisciplinary|Science,Other,1/26/2018,1,50,L211,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Konstantin Batygin and Kyle Kremer: Compact Binaries in Globular Clusters,Science,Stellar Dynamics & Stellar Populations,1/26/2018,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,1/26/2018,1,20,Dearborn Observatory,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Maxwell Moe: How I Learned to Stop Worrying and Love Eclipsing Binaries,Science,Life and Death of Stars,1/30/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,1/30/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Sarah Wellons and Howard Chen: Simulating 3-D Biosignature Gases from Earth-like Planets in the James Webb Era,Science|Data Science & Computing|Interdisciplinary,Exoplanets & the Solar System,2/2/2018,1,30,Tech F160,2018 +CIERA - Special Public Events,Education,,CIERA Graduate Students Host Field Trip for Girls 4 Science,Education,,2/3/2018,1,95,Tech/Dearborn,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Heino Falcke: Imaging Black Holes now and in the future,Science,Black Holes & Dead Stars,2/6/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/6/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Kate Alexander: Radio Observations of Tidal Disruption Events and Jose Onorbe: What do we know about HI Reionization? New Constraints from the High-z Lyman-? Forest,Science,Other,2/9/2018,1,30,Tech F160,2018 +CIERA - Special Seminars,Academic Seminars,,David Chuss: The Cosmology Large Angular Scale Surveyor (CLASS),Science|Data Science & Computing,Galaxies & Cosmology,2/12/2018,1,35,CIERA,2018 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,HAWC+ Meeting,Science|Interdisciplinary,Life and Death of Stars,2/12/2018,1,3,,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rebekah (Bekki) Dawson: Origins of Super-Earths in Inner Solar Systems,Science,Exoplanets & the Solar System,2/13/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/13/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Andrea Antoni: The Evolution of Binaries in a Gaseous Medium: Three-Dimensional Simulations of Binary Bondi-Hoyle-Lyttleton Accretion and Pranab Ghosh: Super-Chandra Masses of Type Ia Supernova Progenitors,Science|Data Science & Computing|Interdisciplinary,Black Holes & Dead Stars,2/16/2018,1,30,Tech F160,2018 +Development Events,Development/Strategic,,Spring 2018 BoV Meeting,,,2/19/2018,1,15,Tech L440,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Christina Williams: The emergence of quenched galaxies in the era of JWST,Science,Galaxies & Cosmology,2/20/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/20/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Pablo Marchant: Pulsational Pair-instability Supernovae in Very Close Binaries and Cliff Johnson: Measuring Star Formation Efficiency and Molecular Cloud Evolution in the Small Magellanic Cloud,Science,Stellar Dynamics & Stellar Populations|Life and Death of Stars,2/23/2018,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,2/23/2018,1,10,Dearborn Observatory,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Duncan Lorimer: Fast Radio Bursts -- Nature's Latest Cosmic Mystery,Science,Life and Death of Stars,2/27/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,2/27/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Michael Grudic: Forming Bound Star Clusters in Galaxies and Sasha Tchekhovskoy: When Pulsars Get Hungry,Science,Life and Death of Stars,3/2/2018,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Maria Drout: The Evolution, Influence, and Ultimate Fate of Massive Stars: Transient Phenomena and Stellar Astrophysics in the Era of Wide-Field Surveys",Science,Life and Death of Stars,3/6/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,3/6/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Ben Nelson: Quantifying the Evidence for an Exoplanet in Radial Velocity Data and Amy Reines,Science,Exoplanets & the Solar System,3/9/2018,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander (Sasha) Philippov: How do pulsars shine?,Science,Life and Death of Stars,3/13/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,3/13/2018,1,25,F160,2018 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Belinda Wilkes, Harvard-Smithsonian Center for Astrophysics +Revealing the Invisible Universe",Interdisciplinary|Science,Other,3/22/2018,1,75,F160,2018 +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,ALMA Community Day,Science|Data Science & Computing,Other,3/29/2018,1,8,Ford ITW,2018 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap,Outreach,Other,4/1/2018,1,60,"Begyle Brewing, 1800 W Cuyler Ave.",2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Shami Chatterjee: The Deepening Mystery of Fast Radio Bursts,Science,Gravitational Waves & Multi-Messenger Astronomy,4/3/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/3/2018,1,25,F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Vikram Dwarkadas: Triggered Star Formation inside the Shell of a Wolf�Rayet Bubble as the Origin of the Solar System,Science,Exoplanets & the Solar System,4/17/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/17/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Diego Munoz and Scott Coughlin,Science,,4/20/2018,1,30,Tech F160,2018 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,FIRE PI Meeting,Science,Galaxies & Cosmology,4/23/2018,1,8,,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Suvi Gezari: Hungry Black Holes,Science,Black Holes & Dead Stars,4/24/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,4/24/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Jeremy Rath: Understanding Multi-Planet System Chaos through Resonant Dynamics and Adam Dempsey: Creating the chaotic GJ876 Laplace resonance with smooth migration,Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,4/27/2018,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,4/27/2018,1,30,Dearborn Observatory,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Rachel Somerville: Momentum-driven winds from radiatively efficient black hole accretion and their impact on galaxy properties,Science,Black Holes & Dead Stars,5/1/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/1/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Katie Breivik: Can we really discover black holes with Gaia? And Alex Gurvich: Firefly: a portable web-based 3d data visualization tool,Science|Data Science & Computing,Black Holes & Dead Stars,5/4/2018,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Justin Crepp: Ultra-precise Spectrographs that Operate at the Diffraction Limit,Science,Other,5/8/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/8/2018,1,25,F160,2018 +CIERA - Special Seminars,Academic Seminars,,Tarraneh Eftekhari,Science,Other,5/11/2018,1,35,CIERA,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Michael Zevin and Jonathan Stern,Science,,5/11/2018,1,30,Tech F160,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Jason Tumlinson: The Circumgalactic Medium: What It Is, and Why It Matters",Science,Galaxies & Cosmology,5/15/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/15/2018,1,25,F160,2018 +Development Events,Development/Strategic,,TCN Panel Event,,,5/17/2018,1,68,Guild Lounge,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Charlie Conroy: Unraveling Galaxy Formation Histories with Semi-Resolved Stellar Populations,Science,Stellar Dynamics & Stellar Populations,5/22/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/22/2018,1,25,F160,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Eve Chase and Brad Cenko,Science,,5/25/2018,1,30,Tech F160,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,5/25/2018,1,20,Dearborn Observatory,2018 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ramesh Narayan: Numerical Simulations of Black Hole Accretion,Science,Black Holes & Dead Stars,5/29/2018,1,40,CIERA,2018 +CIERA - Journal Clubs,Academic Seminars,,Journal Club,Science,,5/29/2018,1,25,F160,2018 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Hungry Hungry Galaxies!,Outreach,Galaxies & Cosmology,5/30/2018,1,60,Marz Community Brewing,2018 +CIERA - Theory Group Meetings,Academic Seminars,,Shi (Claire) Ye,Science,,6/1/2018,1,30,Tech F160,2018 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Brice M�nard, Johns Hopkins University - How Do You Want Your Data: Hot or Cold?",Interdisciplinary|Science|Data Science & Computing,Other,6/4/2018,1,70,L211,2018 +CIERA - Conferences/Collab Meetings,Conferences,,MODEST-18,Science,Stellar Dynamics & Stellar Populations,6/25/2018,5,100,"Santorini, Greece",2018 +CIERA - Special Seminars,Academic Seminars,,Laura Keating: The Intergalactic Medium at the End of Reionizati,Science,Galaxies & Cosmology,6/27/2018,1,35,,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,6/29/2018,1,50,Dearborn Observatory,2018 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Hungry Hungry Galaxies!,Outreach,Galaxies & Cosmology,7/1/2018,1,60,"Metropolitan Brewing, Chicago IL",2018 +CIERA - Conferences/Collab Meetings,Conferences,,12th International LISA Symposium,Science,Gravitational Waves & Multi-Messenger Astronomy,7/8/2018,6,240,"Westin Chicago, 320 North Dearborn St.",2018 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravitational Wave International Committee Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,7/8/2018,1,25,CIERA,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,7/27/2018,1,45,Dearborn Observatory,2018 +CIERA - Conferences/Collab Meetings,Conferences,,Circumgalactic Medium Workshop,Science,Galaxies & Cosmology,7/30/2018,5,50,"Scott Hall, 601 University Place",2018 +CIERA - Special Seminars,Future Leaders|Academic Seminars,,Seven Minutes of Scholarship,Science|Interdisciplinary|Professional Development,Other,8/1/2018,2,35,,2018 +CIERA - REU,Future Leaders|Education,,REU Career panel discussion,Professional Development,,8/6/2018,1,13,Online,2018 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings ,Outreach,,8/31/2018,1,5,Dearborn Observatory,2018 +CIERA - Astronomy on Tap,Public Outreach,539022,Adler's 'Scopes in the City + Astronomy on Tap!,Outreach,Other,9/18/2018,1,,"Begyle Brewing, 1800 W Cuyler Ave.",2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Joint with EPS: Phil Nicholson: �Cassini's Grand Finale�",Interdisciplinary|Science,Other,9/27/2018,1,125,"L211, EPS 2nd Floor Atrium",2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Phil Nicholson: Using Waves in Saturn's Rings to Probe its Interior""""",Science,Gravitational Waves & Multi-Messenger Astronomy|Exoplanets & the Solar System,9/28/2018,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,527450,CIERA Astronomer Evenings,Outreach,,9/28/2018,1,30,Dearborn Observatory,2019 +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,10/1/2018,1,100,Chicago IL,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rachel Bezanson: The Surprisingly Complex Lives of Massive Galaxies,Science,Galaxies & Cosmology,10/2/2018,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Peter Blanchard; Donghong Wu,Science,,10/5/2018,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Lorenzo Sironi: Fast and furious: magnetic reconnection in relativistic jets and black hole corona,Science,Black Holes & Dead Stars,10/9/2018,1,40,F160,2019 +CIERA - Annual Public Lecture Series,Public Outreach,538066,"CIERA Tenth Annual Public Lecture by Director Vicky Kalogera: The NU Astronomy of Stars, Black Holes, and Cosmic Explosions",Outreach,Black Holes & Dead Stars,10/11/2018,1,,Cahn Auditorium,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ekta Patel; Sean Ressler,Science,,10/12/2018,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Mansi Kasliwal: The Dynamic Infrared Sky,Science,Other,10/16/2018,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Andrew Chael; Luke Kelley,Science,,10/19/2018,1,30,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Deanne Coppejans: TBA,Science,,10/22/2018,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Brian O'Shea: Connecting the first stars in the universe to the Milky Way,Science,Galaxies & Cosmology,10/23/2018,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Kung-Yi Su, Emily Leiner",Science,,10/26/2018,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,527452,CIERA Astronomer Evenings,Outreach,,10/26/2018,1,,Dearborn Observatory,2019 +CIERA - Special Seminars,Academic Seminars,,Bertram Bitsch,Science,,10/29/2018,1,40,,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Ballard: The Grand Planetary Ensemble,Science|Interdisciplinary,Exoplanets & the Solar System,10/30/2018,1,40,F160,2019 +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,11/1/2018,1,100,Chicago IL,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Beth Willman: The Most Magnificent Map Ever Made""""",Interdisciplinary|Science|Data Science & Computing,Galaxies & Cosmology,11/2/2018,1,85,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Grant Williams; Griffin Hosseinzadeh,Science,,11/5/2018,1,15,F160,2019 +CIERA - Special Seminars,Academic Seminars,,Grant Williams,Science,,11/5/2018,1,40,,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jack Lissauer: Kepler's Multiple Planet Systems,Science,Exoplanets & the Solar System,11/6/2018,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Tingting Liu, Kerry Paterson",Science,,11/9/2018,1,30,F160,2019 +CIERA - Special Public Events,Public Outreach,,"""The Cosmos in a Heartbeat"" presented by Shane Larson",Achievement|Outreach,Gravitational Waves & Multi-Messenger Astronomy,11/9/2018,1,,Adler Planetarium,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,11/12/2018,1,15,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Patrick Sheehan; Nick Frontiere,Science,,11/16/2018,1,30,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Adithan Kathirgamaraju: Probing the Nature of Relativistic Outflows in Binary Mergers,Science,Other,11/26/2018,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Gurtina Besla: The Dynamics of the Local Group in the Era of Precision Astrometry,Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,11/27/2018,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Lucy McNeil, Erin Cox",Science,,11/30/2018,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,527454,CIERA Astronomer Evenings,Outreach,,11/30/2018,1,,Dearborn Observatory,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Rodrigo Fern�ndez: Mass ejection, compact objects, and electromagnetic transients",Science,Stellar Dynamics & Stellar Populations,12/4/2018,1,40,F160,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Post-Newtonian Dynamics in Stellar Clusters Mini-workshop,Science,Stellar Dynamics & Stellar Populations,12/5/2018,4,,Room 23,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Lake Michigan Exoplanet and Planet Formation Meeting,Science|Interdisciplinary,Exoplanets & the Solar System,12/7/2018,1,20,F285,2019 +CIERA - Special Seminars,Academic Seminars,,Special Seminar: Carl-Johan Haster: The Future of Gravitational Wave Inference - Problems to Solve Over the Next Few Years,Science,Gravitational Waves & Multi-Messenger Astronomy,12/14/2018,1,40,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Tanmoy Laskar: GRBs: The Radio Revolution""""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/14/2019,1,15,F160,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Katrin Heitmann: Exploring the Dark Universe,Interdisciplinary|Science|Data Science & Computing,Other,1/15/2019,1,100,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Prakriti Choudhury, Chris Pankow",Science,,1/18/2019,1,40,F160,2019 +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,"CIERA hosts ""Conference for Undegraduate Women in Physics (CUWiP)",Education|Professional Development,,1/18/2019,3,160,"Tech, Adler Planetarium, CIERA",2019 +CIERA - Special Public Events,,543300,Total Lunar Eclipse with CIERA Astronomers,,,1/20/2019,1,,Dearborn Observatory,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Andrew Hearin: Modeling Cosmological Structure Formation with Extreme-Scale Simulations,Science|Data Science & Computing|Interdisciplinary,Galaxies & Cosmology,1/22/2019,1,40,F160,2019 +CIERA - Special Public Events,Public Outreach|Education,,CIERA graduate students coordinate astronomy event for Y.O.U. program,Education|Outreach,Exoplanets & the Solar System,1/22/2019,1,15,Dearborn Observatory,2019 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Marco Berton: Rogue NLS1 - An AGN story""""",Science,Exoplanets & the Solar System,1/23/2019,1,40,F210,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Kate Alexander,Science,,1/25/2019,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,542876,CIERA Astronomer Evenings,Outreach,,1/25/2019,1,,Dearborn Observatory,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,1/28/2019,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ben Montet: Understanding the evolution of planetary systems and their host stars from the ground and from space,Science,Exoplanets & the Solar System,1/29/2019,1,35,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jennifer Bergner: Tracing chemical complexity during star and planet formation""""",Science,Exoplanets & the Solar System,2/1/2019,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ana Bonaca: Uncovering the nature of dark matter with stellar streams in the Milky Way,Science,Galaxies & Cosmology,2/5/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Zach Hafen, Ian Christie",Science,,2/8/2019,1,30,F160,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LSC Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,2/8/2019,1,20,CIERA,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,2/11/2019,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Adam Leroy: New Views of the Cold Gas in Galaxies,Science,Stellar Dynamics & Stellar Populations,2/12/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jonathan Stern, Pablo Marchant",Science,,2/15/2019,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Erin Kara: X-ray reverberation in accreting black holes,Science,Black Holes & Dead Stars,2/19/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Marc Kamionkowsk,Science,,2/22/2019,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,542877,CIERA Astronomer Evenings,Outreach,,2/22/2019,1,,Dearborn Observatory,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,2/25/2019,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Yanqin Wu: A uniform population of planets,Science,Exoplanets & the Solar System,2/26/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Sarah Wellons, Alex Gurvich ",Science,,3/1/2019,1,30,F160,2019 +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,3/1/2019,1,100,Chicago IL,2019 +CIERA - Special Seminars,Academic Seminars,,IDEAS Program Information Session,Science|Interdisciplinary|Data Science & Computing,Other,3/5/2019,1,40,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sean Andrews: Observing Planet Formation,Science,Exoplanets & the Solar System,3/5/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Adam Dempsey, Mario Spera",Science,,3/8/2019,1,30,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Antonella Palmese: Gravitational wave astrophysics and cosmology with DES galaxies""""",Science,Gravitational Waves & Multi-Messenger Astronomy,3/11/2019,1,15,F160,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Joint w/ ECE: Stefan Danilishin: Measuring Speed""""",Interdisciplinary|Science,Other,3/15/2019,1,30,CIERA,2019 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Sebastian Perez: Dust unveils the presence of a migrating mini-Neptune in a protoplanetary ring"" """,Science,Exoplanets & the Solar System,3/29/2019,1,40,F160,2019 +CIERA - Special Public Events,Public Outreach,,Lakota Stellar STEM weekend,Outreach,Other,3/30/2019,1,10,"Dearborn Observatory, CIERA",2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"EPS Seminar & CIERA Interdisciplinary Colloquium: Sean Raymond: Solar System formation in the context of extra-solar planets""""",Interdisciplinary|Science,Exoplanets & the Solar System,4/1/2019,1,40,F160,2019 +CIERA - Special Public Events,Public Outreach,,2019 Heilborn Lectures : Rainer Weiss,Outreach,Gravitational Waves & Multi-Messenger Astronomy,4/5/2019,1,,Tech - Ryan Auditorium,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA: TBA,Science,,4/8/2019,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Vikram Ravi: Towards the Origins of Fast Radio Bursts""""",Science,Life and Death of Stars,4/9/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Sarah Rugheimer,Science,,4/12/2019,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Simone Scaringi: One (disk) ring to rule them all: linking accretion from protostars to supermassive black holes ,Science,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,4/16/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Maxim Barkov, Farhad Yusef-Zadeh",Science,,4/19/2019,1,30,F160,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Charlie Telesco: Mid-IR Astronomy with the 10.4-m Gran Telescopio Canarias (GTC)""""",Science,Other,4/22/2019,1,15,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Abigail Stevens, Sukrit Ranjan",Science,,4/26/2019,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,542878,CIERA Astronomer Evenings,Outreach,,4/26/2019,1,,Dearborn Observatory,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Elisa Quintana: Exploring the Solar Neighborhood with NASA's TESS mission,Science|Data Science & Computing|Interdisciplinary,Exoplanets & the Solar System,4/30/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: David Spergel, Aprajita Hajela",Science,,5/3/2019,1,30,F160,2019 +CIERA - Special Seminars,Academic Seminars,,"Special Workshop: Randolf Klein: SOFIA Science and Capabilities: Cycle 8 Proposal Workshop""""",Science|Interdisciplinary,Other,5/6/2019,1,40,L250,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,"Observational Astro Meeting: Randolf Klein: SOFIA: Recent Results and Upcoming Opportunities in Airborne Astronomy""""",Science,Other,5/6/2019,1,15,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Leo C. Stein: Testing Einstein with numerical relativity: theories beyond general relativity, and the precision frontier",Science,Gravitational Waves & Multi-Messenger Astronomy,5/7/2019,1,40,F160,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Erik Curiel: A Survey of Foundational Problems for Classical Black Holes and the Hawking Effect""""",Interdisciplinary|Science,Black Holes & Dead Stars,5/9/2019,1,50,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Fiona Harrison, Christopher Berry",Science,,5/10/2019,1,30,F160,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Scott Ransom: Wherefore Pulsars? The Computational Challenges and Physics Rewards of Filtering Needles from Haystacks""""",Interdisciplinary|Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,5/13/2019,1,40,F160,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Pulsar Workshop,Science,Life and Death of Stars|Black Holes & Dead Stars,5/13/2019,2,8,CIERA,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jay Strader: Compact Binaries and the Origin of Millisecond Pulsars,Science,Life and Death of Stars,5/14/2019,1,40,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Special Astro Seminar: Ryan Chornock: Optical Spectroscopy in the Era of Large Transient Surveys,Science,Life and Death of Stars,5/15/2019,1,40,F160,2019 +CIERA - Special Seminars,Academic Seminars,,Ryan Chornock,Science,,5/15/2019,1,40,,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Jonathan Stern, Adriano Baldeschi",Science,,5/17/2019,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Nathan Smith: Light Echoes of Eta Carinae, Massive Star Mergers, and Pre-Supernova Eruptions",Science,Life and Death of Stars,5/21/2019,1,40,F160,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Petia Vlahovska, Pierre Gratia ",Science,,5/24/2019,1,30,F160,2019 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jim Fuller: Surprising Impacts of Gravity Waves,Science,Gravitational Waves & Multi-Messenger Astronomy,5/28/2019,1,40,F160,2019 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Dennis Schatz: Making Science Learning Lifelong, Lifewide and Lifedeep""""",Interdisciplinary|Education,Other,5/29/2019,1,50,LR 3,2019 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Dimitri Veras, Koushik Chatterjee",Science,,5/31/2019,1,30,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,542879,CIERA Astronomer Evenings ,Outreach,,5/31/2019,1,30,Dearborn Observatory,2019 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Anna Ho: The Landscape of Engine-Driven Explosions,Science,Other,6/10/2019,1,30,F160,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,BLAST-TNG pre-flight planning meeting,Interdisciplinary,Life and Death of Stars|Exoplanets & the Solar System,6/10/2019,5,30,Northwestern,2019 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Laura Fissel: Studying Star Formation from the Stratosphere""""",Science,Life and Death of Stars,6/11/2019,1,40,F160,2019 +CIERA - Astronomer Evenings,Public Outreach,542880,CIERA Astronomer Evenings,Outreach,,6/28/2019,1,,Dearborn Observatory,2019 +CIERA - Astronomer Evenings,Public Outreach,551979,Special CIERA Astronomer Evening: 50th Anniversary of the Apollo 11 Moon Landing,Outreach,,7/12/2019,1,75,Dearborn Observatory,2019 +CIERA - Astronomer Evenings,Public Outreach,542881,CIERA Astronomer Evening: 50th Anniversary of the Apollo 11 Moon Landing,Outreach,,7/26/2019,1,75,Dearborn Observatory,2019 +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,8/1/2019,1,100,Chicago IL,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,SOFIA-ALMA Ophiuchus Collaboration,Science,Life and Death of Stars,8/8/2019,1,6,CIERA,2019 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,HAWC+ Papers Meetings,,,8/12/2019,1,6,CIERA,2019 +CIERA - Conferences/Collab Meetings,Conferences,,Extreme Solar Systems IV,Science,Exoplanets & the Solar System,8/19/2019,5,585,"Harpa Center, Reykjavik",2019 +CIERA - Conferences/Collab Meetings,Conferences,,Hot-Wiring the Transient Universe VI,Science,Gravitational Waves & Multi-Messenger Astronomy,8/19/2019,4,93,Norris University Center,2019 +CIERA - Special Public Events,Public Outreach,551673,"Hotwired Public Lecture: Andrew J. Connolly: Streaming the Universe""""",Outreach,Life and Death of Stars,8/21/2019,1,90,Norris University Center,2019 +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap - ""Cosmic Explosions Across Space and Time""",Outreach,Galaxies & Cosmology,8/21/2019,1,70,Metropolitan Brewing,2019 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap - A Night of Ice and Fire,Outreach,Other,9/1/2019,1,50,"Begley Brewing, Chicago IL",2020 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Psylib Meeting,,,9/9/2019,2,10,CIERA,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emily Levesque: Red Supergiants: New Perspectives on Dying Stars,Science,Life and Death of Stars,9/24/2019,1,40,F160,2020 +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,2019 NSF Research Traineeship (NRT) Annual Meeting,Science|Interdisciplinary|Professional Development|Data Science & Computing,,9/25/2019,3,296,Norris University Center,2020 +CIERA - Astronomer Evenings,Public Outreach,542883,CIERA Astronomer Evenings,Outreach,,9/27/2019,1,25,Dearborn Observatory,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Kaew Samaporn Tinyanont & TBA,Science,,9/30/2019,1,15,924156,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Ray Jayawardhana: Characterizing Exoplanets: From Hot Jupiters to Super-Earths,Science,Exoplanets & the Solar System,10/1/2019,1,45,F160,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ore Gottlieb,Science,,10/4/2019,1,45,924156,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Matt McQuinn: Welcome to the era of FRB �cosmology�,Science|Interdisciplinary,Galaxies & Cosmology,10/8/2019,1,45,F160,2020 +CIERA - Special Public Events,Future Leaders|Education,,STEM discussion panel @ lincoln high school,Outreach,,10/8/2019,1,90,Lincoln Park High School,2020 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Daniel Stark Galaxies in the Reionization Era: New Insight into Escape Fractions and Low Metallicity Massive Stars""""",Science,Stellar Dynamics & Stellar Populations,10/11/2019,1,35,924156,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Laura Blecha: Modeling the multi-messenger signatures of massive black hole evolution,Science,Black Holes & Dead Stars|Gravitational Waves & Multi-Messenger Astronomy,10/15/2019,1,40,F160,2020 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Evgeni Grishin Extreme Orbital Evolution of Few-Body systems: From the Solar System to Gravitational Waves""""",Science,Gravitational Waves & Multi-Messenger Astronomy|Exoplanets & the Solar System,10/18/2019,1,30,924156,2020 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Joe Bright Extreme outflows from the black hole X-ray binary MAXI J1820+070""""",Science,Black Holes & Dead Stars,10/18/2019,1,40,924156,2020 +CIERA - Annual Public Lecture Series,Public Outreach,544287,"CIERA Eleventh Annual Public Lecture by Dr. Priyamvada Natarajan: Cartography of the Cosmos: Mapping the Unseen""""",Outreach,Galaxies & Cosmology,10/24/2019,1,250,Cahn Auditorium,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Stephan,Science,,10/25/2019,1,35,924156,2020 +CIERA - Astronomer Evenings,Public Outreach,542884,CIERA Astronomer Evenings,Outreach,,10/25/2019,1,25,Dearborn Observatory,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Ashley Villar & Charles D Kilpatrick,Science,,10/28/2019,1,20,924156,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jennifer Marshall: The future of massively multiplexed spectroscopy: The Maunakea Spectroscopic Explorer,Science,Other,10/29/2019,1,40,F160,2020 +CIERA - Astronomy on Tap,Public Outreach,,AoT Trivia at AAD,Outreach,Other,11/1/2019,1,100,Chicago IL,2020 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Arianna Renzini Mapping the Gravitational Wave Background�""""",Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,11/4/2019,1,40,924156,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Maria Petropoulou : Active Galactic Nuclei as high-energy neutrino factories ,Science,Galaxies & Cosmology,11/5/2019,1,45,7th Floor,2020 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Siddharth Soni Scattering noise in O3"" """,Science,Other,11/7/2019,1,40,924156,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ileyk El Mellah,Science,,11/8/2019,1,35,924156,2020 +CIERA - Astronomer Evenings,Public Outreach,553172,CIERA Astronomer Evening: A Celebration of NASA�s Space Program / Hidden Figures,Outreach,,11/8/2019,1,25,Dearborn Observatory,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Abigail Polin & Jane Huang,Science,,11/11/2019,1,20,,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Alexander Rasskazov,Science,,11/15/2019,1,35,924156,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,11/21/2019,1,,8040,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Tiffany Lewis & Chad Bustard,Science,,11/22/2019,1,35,CIERA Caf�,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Ting Li & Matthew Digman,Science,,11/25/2019,1,20,7th Floor Conf. Rm,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jason Dexter: beyond the shadow,Science,Other,11/26/2019,1,45,7th Floor,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emmanuel Fonseca: Pulsar & FRB Astrophysics in the Era of CHIME,Science|Data Science & Computing,Black Holes & Dead Stars|Life and Death of Stars,12/3/2019,1,45,7th Floor,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,12/5/2019,1,,8040,2020 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium, Jeremy D. Schnittman: Life on Miller's Planet: The Habitability Zone Around Supermassive Black Holes""""",Interdisciplinary|Science,Exoplanets & the Solar System,12/10/2019,1,50,7th Floor Conf. Rm,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,12/19/2019,1,,8040,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,1/2/2020,1,,8040,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Smriti Vats & TBA,Science,,1/13/2020,1,20,7th Floor Conf. Rm,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rosanne Di Stefano: Mass Transfer within Hierarchical Triples: New Models for Progenitors of Gravitational Mergers and Type Ia Supernovae,Science,Gravitational Waves & Multi-Messenger Astronomy,1/14/2020,1,45,7th Floor,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Vigeland: Probing Massive and Supermassive Black Holes with Gravitational Waves,Science,Gravitational Waves & Multi-Messenger Astronomy|Black Holes & Dead Stars,1/21/2020,1,45,7th Floor,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial ,Professional Development|Data Science & Computing,,1/22/2020,1,,8054,2020 +CIERA - Community Events,Community Events,,CIERA New Year open-house,Interdisciplinary,,1/22/2020,1,100,CIERA 8th floor,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA & TBA ,Science,,1/27/2020,1,20,7th Floor Conf. Rm,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jackie Faherty: Visualizing a Billion Stars for Science and Education ,Science|Interdisciplinary|Education,Stellar Dynamics & Stellar Populations,1/28/2020,1,45,7th Floor,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Michelle Vick,Science,,1/31/2020,1,35,CIERA Caf�,2020 +CIERA - Astronomer Evenings,Public Outreach,560313,CIERA Astronomer Evenings,Outreach,,1/31/2020,1,25,Dearborn Observatory,2020 +CIERA - Astronomy on Tap,Public Outreach,,AoT Cosmic Couples: following the billion-year romance of stellar partners,Outreach,Stellar Dynamics & Stellar Populations,2/1/2020,1,70,Chicago IL,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Erica Nelson: The emergence of galactic structure ,Science,Galaxies & Cosmology,2/4/2020,1,45,7th Floor,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,2/5/2020,1,,8054,2020 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings|Future Leaders,,James Webb Space Telescope Proposal Workshop,Science,Other,2/6/2020,1,12,CIERA,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Ugo di Carlo,Science,,2/7/2020,1,35,CIERA Caf�,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: Geoffrey Ryan & TBA,Science,,2/10/2020,1,20,7th Floor Conf. Rm,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Philipp Moesta: Magnetic Fields, Jets, and Turbulence in the Multi-messenger Era",Science,Gravitational Waves & Multi-Messenger Astronomy,2/11/2020,1,45,7th Floor,2020 +CIERA - Special Public Events,Future Leaders|Education,,"CIERA Graduate Students oversee visit from Chicago students ""Off the Street Club""",Education|Interdisciplinary,,2/18/2020,1,16,Dearborn Observatory,2020 +CIERA - Software Tutorials,Future Leaders,,CIERA Bi-Weekly Software Tutorial,Professional Development|Data Science & Computing,,2/19/2020,1,,8054,2020 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Irina Zhuravleva,Science,,2/21/2020,1,35,CIERA Caf�,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Irina Zhuravleva,Science,,2/21/2020,1,45,,2020 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting: TBA & TBA,Science,,2/24/2020,1,20,7th Floor Conf. Rm,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Andrew Vanderburg: Preparing for Earth 2.0: The Detailed Properties of Terrestrial Planets ,Science,Exoplanets & the Solar System,2/25/2020,1,45,7th Floor,2020 +CIERA - Theory Group Meetings,Academic Seminars,,"CIERA Theory Group: Brian McNamara, Sara Issaoun & Giuliano Iorio",Science,,2/28/2020,1,35,CIERA Caf�,2020 +CIERA - Astronomer Evenings,Public Outreach,560314,CIERA Astronomer Evenings,Outreach,,2/28/2020,1,25,Dearborn Observatory,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Allison Strom,Science,,3/3/2020,1,45,,2020 +CIERA - Special Seminars,Academic Seminars,,Kishalay De,Science,,5/20/2020,1,40,,2020 +CIERA - Special Seminars,Academic Seminars,,Rachel Amey,Science,,5/27/2020,1,40,,2020 +CIERA - REACH,Public Outreach|Education,,REACH 2020 Research experiences in Astronomy at CIERA for High School Students,Outreach|Education,,6/29/2020,1,12,,2020 +CIERA - Special Public Events,Public Outreach|Education,,CIERA High School Summer Research Experience - START,Education,,7/29/2020,8,12,Online,2020 +CIERA - REU,Future Leaders,,REU Career Discussion Panel,Professional Development,,8/4/2020,1,11,Online,2020 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Stephen Taylor,Science,,9/22/2020,1,45,,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marla Geha,Science,,9/29/2020,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kareem El-Badry,Science,,10/2/2020,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ilse Cleeves,Science,,10/6/2020,1,45,,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Josiah Schwab,Science,,10/13/2020,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Burcin Mutlu Pakdil,Science,,10/16/2020,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Keith Hawkings,Science,,10/20/2020,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Sebastian Gomez,Science,,10/23/2020,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Nia Imara,Science,,10/27/2020,1,45,,2021 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 12th Annual Public Lecture: Shane Larson - ""A Storm of Stars: a Living History of the Milky Way""",Outreach,Galaxies & Cosmology,10/28/2020,1,450,Online,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Meridith Joyce,Science,,11/6/2020,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Zaven Arzoumanian,Science,,11/10/2020,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Tarraneh Eftekhari,Science,,11/13/2020,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kishalay De,Science,,11/20/2020,1,60,CIERA Caf�,2021 +CIERA - Astronomy on Tap,Public Outreach,,December 12 2019 Doughtnuts in Space and Other Black Hole Stories,Outreach,Other,12/1/2020,1,100,Chicago IL,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Ariadna Murguia-Berthier,Science,,12/4/2020,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Jennifer Barnes,Science,,12/11/2020,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Jamie Law-Smith,Science,,12/11/2020,1,60,CIERA Caf�,2021 +CIERA - Special Public Events,Public Outreach|Education,,Northwestern Prison Education Program,Outreach|Education,,1/1/2021,1,20,"Stateville Correctional Center, Joliet IL",2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Viviana Acquaviva,Science,,1/19/2021,1,45,,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Tuguldur Sukhbold,Science,,1/26/2021,1,45,,2021 +CIERA - Astronomy LIVE,Public Outreach|Education,,Astronomy LIVE debut,Outreach,Other,1/29/2021,1,45,Online,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Daniele Michilli,Science,,1/29/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexie Leauthaud,Science,,2/2/2021,1,45,,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Renyu Hu,Science,,2/9/2021,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Tatsuya Mattsumoto,Science,,2/12/2021,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Christopher Irwin,Science,,2/12/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Johanna Teske,Science,,2/16/2021,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Edwin Chi-Ho Chan,Science,,2/19/2021,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Michael Pajkos,Science,,2/19/2021,1,60,CIERA Caf�,2021 +CIERA - Astronomy LIVE,Public Outreach|Education,,Astronomy LIVE - February,Outreach,Other,2/26/2021,1,60,Online,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Elaad Applebaum,Science,,2/26/2021,1,60,CIERA Caf�,2021 +CIERA - Special Seminars,Academic Seminars,,Marta Bryan,Science,,3/8/2021,1,40,,2021 +CIERA - Special Seminars,Academic Seminars,,Jason Wang,Science,,3/10/2021,1,40,,2021 +CIERA - Special Seminars,Academic Seminars,,Kareem El-Badry,Science,,3/16/2021,1,40,,2021 +CIERA - Special Seminars,Academic Seminars,,Ben Margalit,Science,,3/17/2021,1,40,,2021 +CIERA - Special Seminars,Academic Seminars,,Adam Miller,Science,,3/18/2021,1,40,,2021 +CIERA - Special Seminars,Academic Seminars,,Ana Bonaca,Science,,3/22/2021,1,40,,2021 +CIERA - Conferences/Collab Meetings,Conferences,,"CIERA hosts ""TRiple EvolutioN and DYnamics"" (TRENDY) conference",Science,Stellar Dynamics & Stellar Populations,3/22/2021,4,210,Online,2021 +CIERA - Special Seminars,Academic Seminars,,Rachel Bezanson,Science,,3/23/2021,1,40,,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Alexander Ji,Science,,4/6/2021,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Anna Sijie Yu,Science,,4/9/2021,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Francisco Mercado,Science,,4/9/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Megan Ansdell,Science,,4/13/2021,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kaze Wang Kei Wong,Science,,4/16/2021,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Sambaran Banerjee,Science,,4/16/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jennifer Barnes,Science,,4/20/2021,1,45,,2021 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: James Kasting, Pennsylvania State University: ""The Search for Life on Planets Around Other Stars""",Interdisciplinary|Science,Exoplanets & the Solar System,4/23/2021,1,65,Online,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Lachlan Lancaster,Science,,4/23/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Lia Corrales,Science,,4/27/2021,1,45,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Kathryn Weil,Science,,4/30/2021,1,60,CIERA Caf�,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour: Caitlin Witt,Science,,4/30/2021,1,60,CIERA Caf�,2021 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/6/2021,1,40,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/7/2021,1,60,CIERA Caf�,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Joe Anderson: Constraining the progenitors of massive star explosions: a meta-analysis of core-collapse supernovae 56Ni yields,Science,Life and Death of Stars,5/11/2021,1,45,7th Floor Conf. Rm,2021 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/13/2021,1,40,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/14/2021,1,60,CIERA Caf�,2021 +CIERA - Special Public Events,Public Outreach|Education,,Baxter STEM day,Education|Outreach,,5/17/2021,1,16,Online,2021 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Greg Mosby: Analyzing star formation histories and near-infrared detectors using tools from machine learning,Science|Interdisciplinary|Data Science & Computing,Life and Death of Stars,5/18/2021,1,45,7th Floor Conf. Rm,2021 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Diversity, Equity, and Inclusion Training",,,5/20/2021,1,40,7th Floor Conf. Rm,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/21/2021,1,60,CIERA Caf�,2021 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,5/27/2021,1,40,,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,CIERA Science Happy Hour,Science,,5/28/2021,1,60,CIERA Caf�,2021 +CIERA - Astronomy LIVE,Public Outreach|Education,570736,CIERA Astronomy LIVE,Outreach,Other,5/28/2021,1,40,Online,2021 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Diversity, Equity, and Inclusion Training",Professional Development,,6/3/2021,1,40,CIERA,2021 +CIERA - Astronomy LIVE,Public Outreach|Education,575816,CIERA Astronomy LIVE,Outreach,Other,6/25/2021,1,40,Online,2021 +CIERA - REACH,Future Leaders|Education,,REACH 2021,Interdisciplinary|Professional Development,,7/1/2021,,21,Online,2021 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,7/15/2021,1,40,,2021 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Meeting,,,7/22/2021,1,40,,2021 +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders|Education|Public Outreach,,Data Science for Public Good Conference,Outreach|Education|Data Science & Computing,,7/23/2021,1,35,Online,2021 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,9/24/2021,1,60,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/1/2021,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Philip Muirhead: The Race to the Bottom: The Search for Planets around Ever Smaller Hosts,Science,Exoplanets & the Solar System,10/5/2021,1,45,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/8/2021,1,60,CIERA Caf�,2022 +CIERA - Annual Public Lecture Series,Public Outreach,563371,"CIERA 13th Annual Public Lecture by Dr. Phil Plait: ""Strange New Worlds: Is Earth Special?""",Outreach|Interdisciplinary,Exoplanets & the Solar System,10/14/2021,1,450,Cahn Auditorium,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/15/2021,1,60,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,10/22/2021,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Daniel Lecoanet: Mixing near Stellar Convective Boundaries,Science,Life and Death of Stars,10/26/2021,1,45,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,"Science Happy Hour: Northwestern Alumni Association, Tucson Chapter",Science,,10/29/2021,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Reed Essick: Gravitational Laboratories for Nuclear Physics: Constraining the Equation of State of Neutron Stars with Astrophysical Observations,Science,Black Holes & Dead Stars,11/2/2021,1,45,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/5/2021,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Chihway Chang: Weak lensing in the Dark Energy Survey and beyond,Science,Galaxies & Cosmology,11/9/2021,1,45,7th Floor Conf. Rm,2022 +CIERA - Special Public Events,Public Outreach|Education,,Marie Murphy Science Olympiad Solar System Event Coaching,Education|Outreach,Exoplanets & the Solar System,11/11/2021,1,4,Online,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/12/2021,1,60,CIERA Caf�,2022 +CIERA - Social Justice Meetings,Academic Seminars,,Speaker: Monica Vidaurri,,,11/16/2021,1,40,7th Floor Conf. Rm,2022 +CIERA - Special Seminars,Academic Seminars,,Adam Samuels,Science,,11/18/2021,1,60,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,11/19/2021,1,60,CIERA Caf�,2022 +CIERA - Social Justice Meetings,Academic Seminars|Future Leaders|Community Events,,CIERA Mentorship Survey,Professional Development,,12/2/2021,1,40,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/3/2021,1,60,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/10/2021,1,60,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,12/17/2021,1,60,CIERA Caf�,2022 +CIERA - Conferences/Collab Meetings,Conferences,,CIERA helps organize Aspen Winter Conference 2022,Science,Gravitational Waves & Multi-Messenger Astronomy,1/2/2022,6,59,"Aspen, Colorado",2022 +CIERA - Special Seminars,Academic Seminars,,Odelia Teboul,Science,Other,1/13/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,1/14/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Maya Fishbach: Astrophysical Lessons from LIGO-Virgo's Black Holes,Science,Black Holes & Dead Stars,1/18/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Social Justice Meetings,Academic Seminars,,Ombudsperson Town Hall,,,1/21/2022,1,60,7th Floor Conf. Rm,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Luke Kelley: Binary AGN and their Gravitational Waves,Science,Gravitational Waves & Multi-Messenger Astronomy,1/25/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,1/28/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Tjitske Starkenburg: Unraveling Galaxy Evolution: tracing observed galaxy properties to galaxy formation physics,Science,Galaxies & Cosmology,2/1/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Seminar,,,2/7/2022,1,40,,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Giacomo Fragione: Intermediate-mass black holes: past, present, future",Science,Black Holes & Dead Stars,2/8/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/11/2022,1,60,CIERA Caf�,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Patrick Sheehan: Unveiling Planet Formation in the Youngest Disks,Science,Exoplanets & the Solar System,2/15/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/18/2022,1,60,CIERA Caf�,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Maya Fishbach: Astrophysics and cosmology with gravitational-wave catalogs,Science,Gravitational Waves & Multi-Messenger Astronomy|Galaxies & Cosmology,2/23/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,2/25/2022,1,60,CIERA Caf�,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Lena Murchikova: Sagittarius A* in its natural habitat,Science,Other,2/28/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Allison Strom: The Quest to Measure Galaxy Chemistry in the Early Universe,Science,Other,3/2/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Jane Huang: Observational Frontiers in Planet Formation,Science,Exoplanets & the Solar System,3/8/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,3/11/2022,1,60,CIERA Caf�,2022 +CIERA - Special Seminars,Academic Seminars,,Special Physics and Astronomy Colloquium: Anna Ho: Fast Transients: A (Fleeting) Window on the Final Stages of Stellar Evolution and the Formation of Compact Objects,Science,Stellar Dynamics & Stellar Populations,3/15/2022,1,60,7th Floor Conf. Rm,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Joel Primack: New Challenges in Cosmology, Galaxy Formation, and Planet Habitability",Science,Galaxies & Cosmology,3/29/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/1/2022,1,60,CIERA Caf�,2022 +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,ALMA Community Day,Science,Other,4/1/2022,1,,CIERA 8th Floor,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/8/2022,1,60,CIERA Caf�,2022 +CIERA - Social Justice Meetings,Academic Seminars,,Social Justice Seminar,,,4/11/2022,1,40,,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Kate Alexander: Cosmic Extremes: Time-Domain Astrophysics in a Multi-Messenger World,Science,Gravitational Waves & Multi-Messenger Astronomy,4/12/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Special Public Events,Education|Public Outreach,,UChicago Office of Special Programs Upward Bound Visit,Outreach|Interdisciplinary,,4/12/2022,1,25,CIERA Cafe,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/15/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Fakhri Zahedy: The Multiphase Circumgalactic Medium and What it Teaches Us about Galaxy Evolution,Science,Galaxies & Cosmology,4/19/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Annual Public Lecture Series,Public Outreach,587302,"CIERA Astronomy Night Out: Lecture by Dr. Emily Leiner ""Signals from the Stellar Disco: Decoding the Secret Messages in Starlight""",Outreach,Stellar Dynamics & Stellar Populations,4/22/2022,1,65,Lutkin Hall,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/22/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Diego Mu�oz: A Revised Paradigm of Binary-Disk Interaction,Science,Stellar Dynamics & Stellar Populations|Life and Death of Stars,4/26/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,4/29/2022,1,60,CIERA Caf�,2022 +CIERA - Conferences/Collab Meetings,Conferences,,"""Intermediate-Mass Black Holes: New Science from Stellar Evolution to Cosmology"" conference",Science|Interdisciplinary,Black Holes & Dead Stars,4/30/2022,4,200,"San Juan, Puerto Rico",2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/6/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Rosalba Perna: Electromagnetic Transients in the Disks of Active Galactic Nuclei,Science,Galaxies & Cosmology|Stellar Dynamics & Stellar Populations,5/10/2022,1,50,7th Floor Conf. Rm,2022 +Development Events,Development/Strategic,,Spring 2022 BoV Meeting,,,5/10/2022,1,12,Boardroom/Online,2022 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Michael Le Bars, ""Fluid dynamics of Jupiter in the lab: deep jets and floating vortices""",Interdisciplinary|Science,Stellar Dynamics & Stellar Populations,5/12/2022,1,55,LR 5,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/13/2022,1,60,CIERA Caf�,2022 +CIERA - Special Public Events,,,2022 Total Lunar Eclipse,,,5/15/2022,1,250,South Campus Parking Garage,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Jennifer Bergner: Volatile chemistry in planet-forming disks,Science,Exoplanets & the Solar System,5/17/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - CIERA Connections,Future Leaders,,"CIERA Connections: Scotty Coughlin ""Careers in Research Computing Services""",Future Leaders|Interdisciplinary|Data Science & Computing,,5/17/2022,1,60,CIERA Caf�,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/20/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Poojan Agarwal: Reconsidering the contribution of massive stars in star cluster simulations,Science,Stellar Dynamics & Stellar Populations,5/24/2022,1,50,7th Floor Conf. Rm,2022 +CIERA - Software Tutorials,Future Leaders,,Software Tutorial: Git for Version Control,Professional Development|Data Science & Computing,,5/26/2022,1,10,Boardroom,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,5/27/2022,1,60,CIERA Caf�,2022 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Sarah Wellons: Simulating the Growth and Quenching of Massive Galaxies from the Early Universe to Today,Science,Galaxies & Cosmology,5/31/2022,1,40,7th Floor Conf. Rm,2022 +CIERA - Science Happy Hour,Academic Seminars|Community Events,,Science Happy Hour,Science,,6/3/2022,1,60,CIERA Caf�,2022 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap - Better late than never: JWST arrives and AoT imbibes!,Outreach,Other,6/9/2022,1,40,"Begyle Brewing, 1800 W Cuyler Ave.",2022 +CIERA - REACH,Public Outreach,,REACH 2022,Outreach,,6/21/2022,1,28,CIERA,2022 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Whitney Powers: Internal Heating, why Convective Driving Models Matter",Science,Other,6/22/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,6/24/2022,1,30,Dearborn Observatory,2022 +CIERA - Special Public Events,Future Leaders|Education,,Baxter Summer Scholars Astronomy Day,Education|Outreach|Interdisciplinary,,6/28/2022,1,,,2022 +CIERA - RET,Future Leaders|Education,,RET 2022,Education|Outreach,,7/1/2022,,4,Online,2022 +CIERA - Special Seminars,Academic Seminars,,"Special Seminar: Martyna Chruslinska: Galaxies, binaries and gravitational waves",Science,Gravitational Waves & Multi-Messenger Astronomy|Galaxies & Cosmology,7/13/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Special Seminars,Academic Seminars|Community Events,,JWST Lunch Event with Allison Strom,Science|Achievement,Other,7/18/2022,1,60,1800 Sherman Avenue,2022 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,7/29/2022,1,35,Dearborn Observatory,2022 +CIERA - Special Seminars,Academic Seminars,,Special Seminar: Lia Medeiros: New test of the black hole metric with EHT images of Sgr A*,Science,Black Holes & Dead Stars,8/8/2022,1,60,7th Floor Conf. Rm,2022 +CIERA - Special Public Events,Public Outreach,,"""An Astronomer walks into a bar"" live astronomy interview",Outreach,,8/9/2022,1,,"Chicago, Il",2022 +Development Events,Development/Strategic|Public Outreach,,TCN-Adler JWST Event,,,8/9/2022,1,,Adler,2022 +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap: The Dog Days are Over: Drink Some Beer, JWST Images Are Here!",Outreach,Other,8/11/2022,1,50,"Begyle Brewing, 1800 W Cuyler Ave.",2022 +CIERA - Astronomer Evenings,Public Outreach,,Ciera Astronomer Evenings,Outreach,,8/26/2022,1,30,Dearborn Observatory,2022 +CIERA - Special Public Events,Public Outreach,,Northwestern University Osher Institute for Life Long Learning Guest Speaker,Outreach,,9/1/2022,1,,"Evanston, Il",2023 +CIERA - Special Public Events,Public Outreach,,Naperville Astronomical Society Meeting,Outreach,,9/6/2022,1,,"Naperville, Il",2023 +CIERA - Conferences/Collab Meetings,Future Leaders|Collab/Group Meetings,,LSSTC Data Science Fellowship Program,Interdisciplinary|Data Science & Computing|Professional Development,,9/20/2022,4,25,"Evanston, Il",2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,9/21/2022,1,25,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,9/23/2022,1,35,CIERA Caf�,2023 +Development Events,Development/Strategic|Public Outreach,,OLLI JWST Webinar - Strom as guest speaker,,,9/23/2022,1,,Online,2023 +CIERA - Special Public Events,Public Outreach,,Public Talk at Unitarian Church,Outreach,,9/24/2022,1,,"Wilmette, Il",2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Bing Zhang: Fast Radio Bursts: A mystery being solved ,Science,Life and Death of Stars,9/27/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,9/28/2022,1,25,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,9/30/2022,1,35,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,9/30/2022,1,30,Dearborn Observatory,2023 +CIERA - Special Public Events,Public Outreach,,Campbell Creek Science Center Fireside Chat Series,Science|Outreach,,10/1/2022,1,,"Anchorage, AK",2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Jenny Greene: Elves, Dwarfs, and (mini) Monsters",Science,Other,10/4/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/5/2022,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,Introduction to Quest - Northwestern���s High Performance Computing Cluster,Professional Development|Data Science & Computing,,10/6/2022,1,10,Boardroom,2023 +Development Events,Development/Strategic,,Fall 2022 BoV Meeting,,,10/6/2022,1,10,CIERA,2023 +Development Events,Development/Strategic,,Fall 2022 APL Dinner,,,10/6/2022,1,17,Oceanique,2023 +CIERA - Annual Public Lecture Series,Public Outreach,,"CIERA 13th Annual Public Lecture by Dr. Carolyn Porco - ""The Journey and the Legacy""",Outreach|Interdisciplinary,Other,10/6/2022,1,165,Cahn Auditorium,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/7/2022,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: Emanuele Berti: Next-generation detectors: challenges and opportunities,Science|Interdisciplinary,Other,10/11/2022,1,40,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/12/2022,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,"Terminal Basics for Quest, MacOS and Linux",Professional Development|Data Science & Computing,,10/13/2022,1,10,Boardroom,2023 +CIERA - Astronomy on Tap,Public Outreach,,AoT - The Nightmare Before Launch,Outreach,Other,10/13/2022,1,25,"Begyle Brewing, 1800 W Cuyler Ave.",2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/14/2022,1,40,CIERA Caf�,2023 +Development Events,Development/Strategic,,MMT Arizona Visit,,,10/14/2022,1,13,Arizona,2023 +Development Events,Development/Strategic,,CIERA Tucson NAA Event,,,10/15/2022,1,,Arizona,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Shri Kulkarni: ""The Far Ultraviolet diffuse background""",Science,Other,10/18/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Conferences/Collab Meetings,Conferences,,SEDMV2 Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/18/2022,1,29,"CIERA, 7th Floor, Room 7-600",2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/19/2022,1,30,CIERA Caf�,2023 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,ZTF Collaboration Meetings,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,10/19/2022,3,39,"CIERA, 7th Floor, Room 7-600",2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/21/2022,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Daniel Fabrycky: ""Exoplanetary Probes: Resonant Chains, Exomoons, and Tidal Dynamics""",Science,Exoplanets & the Solar System,10/25/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,10/26/2022,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,Introduction to Conda,Professional Development|Data Science & Computing,,10/27/2022,1,10,Boardroom,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,10/28/2022,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,10/28/2022,1,10,Dearborn Observatory,2023 +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,,ALMA Data Reduction Workshop,Science|Interdisciplinary|Data Science & Computing,,10/28/2022,1,,CIERA,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Mitch Begelman: ""Black Holes and Their Accretion Disks: A Magnetic Perspective""",Science,Black Holes & Dead Stars,11/1/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/2/2022,1,30,CIERA Caf�,2023 +Development Events,Development/Strategic,,NULC Dearborn Tour,,,11/3/2022,1,71,Dearborn Observatory,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/4/2022,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Federica Bianco: ""Building a Legacy: the Rubin Observatory Legacy Survey of Space and Time""",Science,Other,11/8/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/9/2022,1,50,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,Introduction to Workflows with Git and GitHub,Professional Development|Data Science & Computing,,11/10/2022,1,,Boardroom,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/11/2022,1,50,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Salvatore Vitale: ""Astrophysics with gravitational-wave sources: today and tomorrow""",Science,Gravitational Waves & Multi-Messenger Astronomy,11/15/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/16/2022,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,11/18/2022,1,40,CIERA Caf�,2023 +CIERA - Conferences/Collab Meetings,Conferences|Future Leaders,,REU Site Director's Meeting,Future Leaders|Interdisciplinary,,11/19/2022,3,60,Norris University Center,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Ue-Li Pen:""Coherent cosmological radiation: FRBs and gravitational waves""",Science,Gravitational Waves & Multi-Messenger Astronomy,11/29/2022,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,11/30/2022,1,30,CIERA Caf�,2023 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Enectali Figueroa-Feliciano, ""Extremely Cool Detectors On a Fireball: Launching the Micro-X Sounding Rocket""",Interdisciplinary|Science,Other,12/1/2022,1,55,F160,2023 +CIERA - Astronomy on Tap,Public Outreach,,"Astronomy on Tap: Just the Tip of the Ice... Cube: Cold Drinks, Hot Science ",Outreach,Other,12/1/2022,1,60,"Begyle Brewing, 1800 W Cuyler Ave.",2023 +CIERA - Theory Group Meetings,Academic Seminars ,,CIERA Theory Group,Science,,12/2/2022,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach ,,12/2/2022,1,11,Dearborn Observatory,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,12/9/2022,1,40,CIERA Caf�,2023 +Development Events,Development/Strategic,,President Schill Visit,,,12/9/2022,1,,CIERA,2023 +CIERA - Special Public Events,Public Outreach,,NASA CoS Visit to CPS Schools,Outreach,,12/14/2022,1,60,"Wadsworth STEM Elementary School, Chicago South Side",2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/13/2023,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Katerina Chatziioannou: ""Studying the neutron star equation of state with gravitational waves""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/17/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,1/18/2023,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/20/2023,1,35,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Jessica Lu: ""Black Holes in the Milky Way and the Tech to Find Them""",Science|Interdisciplinary,Black Holes & Dead Stars,1/24/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,1/25/2023,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,1/27/2023,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,1/27/2023,1,50,Dearborn Observatory,2023 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,1/30/2023,1,8,Boardroom,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Marcelle Soares-Santos: ""Dark Energy: recent results and the path for discovery in the era of multi-messenger studies""",Science,Gravitational Waves & Multi-Messenger Astronomy,1/31/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/1/2023,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Writing Presentable Code in Python,Professional Development|Data Science & Computing,,2/2/2023,1,10,Boardroom,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/3/2023,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Meredith MacGregor: ""How to Form a Habitable Planet""",Science|Interdisciplinary,Exoplanets & the Solar System,2/7/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/8/2023,1,30,CIERA Caf�,2023 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Too Hot to Handle - Inside the Lives of The Universe's Most Notorious Couples!,Outreach,Black Holes & Dead Stars,2/9/2023,1,42,"Begyle Brewing, 1800 W Cuyler Ave.",2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/10/2023,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Gongjie Li: ""Dynamical Origin and Habitability of Planets -- On the Spin-Axis Variations in Planetary Systems""",Science,Exoplanets & the Solar System,2/14/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/15/2023,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Adventures in Python I,Professional Development|Data Science & Computing,,2/16/2023,1,10,Boardroom,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/17/2023,1,40,CIERA Caf�,2023 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Edwin Kite, ""Climate of Mars, past and future""",Interdisciplinary|Science,Exoplanets & the Solar System,2/21/2023,1,82,F160,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,2/22/2023,1,30,CIERA Caf�,2023 +Development Events,Development/Strategic,,Block Museum Dario Robleto Event,Interdisciplinary,,2/22/2023,1,9,Block Museum,2023 +CIERA - Special Public Events,Public Outreach,,STEAM zoom outreach presentation,Outreach,,2/23/2023,1,80,Online,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,2/24/2023,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,2/24/2023,1,3,Dearborn Observatory,2023 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,Mental Health First Aid Introductory Workshop,,,2/27/2023,1,12,7th Floor Conf. Rm,2023 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,Gravity Spy Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,2/27/2023,1,6,Boardroom,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Kevin Hainline: ""The Farthest: Exploring the Early Universe with JWST/JADES""",Science,Galaxies & Cosmology,2/28/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/1/2023,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,,CIERA Computing Workshop: Adventures in Python II,Professional Development|Data Science & Computing,,3/2/2023,1,10,Boardroom,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/3/2023,1,40,CIERA Caf�,2023 +CIERA - Conferences/Collab Meetings,Conferences,,"2023 Aspen Winter Conference - ""eXtreme Black Holes""",Science|Interdisciplinary,Black Holes & Dead Stars,3/5/2023,6,109,Aspen Center for Physics,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Evan Kirby: ""Primordial r-Process Dispersions in Globular Clusters""",Science,Stellar Dynamics & Stellar Populations,3/7/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/8/2023,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/10/2023,1,40,CIERA Caf�,2023 +CIERA - Conferences/Collab Meetings,Conferences,,LIGO-VIRGO-KAGRA Collaboration Meeting,Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,3/13/2023,4,650,Norris University Center,2023 +CIERA - Annual Public Lecture Series,Public Outreach,,Special CIERA Astronomy Public Lecture by Dr. Gabriela Gonzalez,Outreach,Other,3/14/2023,1,75,Norris University Center,2023 +CIERA - Annual Public Lecture Series,Public Outreach,,"Special Public Lecture by Dr. Gaby Gonzalez: ""Gravitational Waves, Black Holes, and the Machines that Detect them""",Outreach|Science|Interdisciplinary|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,3/14/2023,1,100,"McCormick Auditorium, Norris University Center",2023 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap: Pie in the Sky: A Slice of the Universe Served up Fresh!,Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/14/2023,1,65,"Five & Dime, 1026 Davis St.",2023 +Development Events,Development/Strategic,,Gonzalez Public Lecture Dinner,,,3/14/2023,1,10,,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/15/2023,1,35,CIERA Caf�,2023 +CIERA - Special Public Events,Public Outreach,,"""Star Eyes"" initiative debuts as part of LIGO-Virgo-KAGRA collaboration",Science|Interdisciplinary|Outreach,Gravitational Waves & Multi-Messenger Astronomy,3/15/2023,1,,Norris,2023 +Development Events,Development/Strategic,,Reitze Event,,,3/17/2023,1,20,CIERA Sky Lounge,2023 +CIERA - Special Public Events,Future Leaders|Academic Seminars,,Baxter Symposium Workshops,Education|Outreach|Interdisciplinary,,3/17/2023,1,80,NU Global Hub and Allen Center,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,3/29/2023,1,30,CIERA Caf�,2023 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: David Bercovici: Origin, Evolution and Habitability of Planet Earth",Interdisciplinary|Science,Other,3/30/2023,1,55,L211,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,3/31/2023,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,3/31/2023,1,25,Dearborn Observatory,2023 +CIERA - Special Seminars,Public Outreach,,Guest Lecture at UIC,Science|Outreach,Other,3/31/2023,1,55,Online,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Astro Seminar: David Kaplan: The ASKAP Variables and Slow Transients (VAST) Survey ,Science|Interdisciplinary,Life and Death of Stars,4/4/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/5/2023,1,30,CIERA Caf�,2023 +Development Events,Development/Strategic,,Spring 2023 BoV Meeting,,,4/6/2023,1,,Boardroom/Online,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/7/2023,1,40,CIERA Caf�,2023 +CIERA - CIERA Connections,Future Leaders,,CIERA Connections: Ben Nelson,Future Leaders|Interdisciplinary|Data Science & Computing,,4/10/2023,1,46,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Greg Bryan: ""A Multiscale Physics Approach to Understanding Galaxy Evolution""",Science|Interdisciplinary,Galaxies & Cosmology,4/11/2023,1,35,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/12/2023,1,35,CIERA Caf�,2023 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Tyson Littenberg: Data Science Challenges in Gravitational Wave Surveys,Interdisciplinary|Science|Data Science & Computing,Gravitational Waves & Multi-Messenger Astronomy,4/13/2023,1,43,L211,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/14/2023,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Amy Reines: ""Dwarf Galaxies and the Smallest Supermassive Black Holes""",Science,Black Holes & Dead Stars|Galaxies & Cosmology,4/18/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/19/2023,1,30,CIERA Caf�,2023 +CIERA - Special Public Events,Public Outreach,,Figueroa Lab Tour,Outreach,,4/19/2023,1,12,"1801 Maple Ave, Evanston IL",2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/21/2023,1,40,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,"Astro Seminar: Brian Metzger: ""Heavy Element Nucleosynthesis from the Birth of Black Holes""",Science,Black Holes & Dead Stars,4/25/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astro Meeting,Science,,4/26/2023,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,4/28/2023,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,4/28/2023,1,25,Dearborn Observatory,2023 +Development Events,Development/Strategic,,Science Advisory Board Meeting,,,4/28/2023,1,10,CIERA,2023 +CIERA - Journal Clubs,Academic Seminars,592166,CIERA Journal Club,Science,,5/2/2023,1,35,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589798,"Astro Seminar: Kaitlin Kratter: ""The Origins of Planets and the Stars they Orbit""",Science,Exoplanets & the Solar System,5/2/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,592212,Observational Astro Meeting,Science,,5/3/2023,1,30,CIERA Caf�,2023 +CIERA - Special Public Events,Future Leaders|Academic Seminars|Public Outreach,,Astronomy Teaching Workshop: The Death and Afterlife of Stars,Education|Professional Development,Life and Death of Stars,5/3/2023,1,7,"Lurie Medical Research Center, 303 E Superior St, Chicago Il",2023 +CIERA - Software Tutorials,Future Leaders,597659,CIERA Computing Workshop: Type Hinting in Python,Professional Development|Data Science & Computing,,5/4/2023,1,,CIERA,2023 +CIERA - Astronomy on Tap,Public Outreach,598364,Astronomy on Tap: Star Wars Day - Party like it's Boonta Eve,Outreach,,5/4/2023,1,43,"Begyle Brewing, 1800 W Cuyler Ave.",2023 +CIERA - Theory Group Meetings,Academic Seminars,592311,CIERA Theory Group,Science,,5/5/2023,1,40,CIERA Caf�,2023 +CIERA - Journal Clubs,Academic Seminars,592167,CIERA Journal Club,Science,,5/9/2023,1,35,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589799,"Astro Seminar: Tamara Bogdanovic: ""From Kiloparsec Scales to Merger: Properties of Dual AGNs that Become Gravitational Wave Sources""",Science,Gravitational Waves & Multi-Messenger Astronomy,5/9/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,592213,Observational Astro Meeting,Science,,5/10/2023,1,30,CIERA Caf�,2023 +CIERA - Theory Group Meetings,Academic Seminars,592312,CIERA Theory Group,Science,,5/12/2023,1,40,CIERA Caf�,2023 +CIERA - Special Seminars,Academic Seminars,600888,Janosz Dewberry: Dynamical tides in rapidly rotating stars,Science,Stellar Dynamics & Stellar Populations,5/15/2023,1,40,CIERA Cafe,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589782,"Astro Seminar: Misty C. Bentz: ""Comparing Direct Black Hole Mass Measurements in Active Galactic Nuclei""",Science,Black Holes & Dead Stars,5/16/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Journal Clubs,Academic Seminars,592168,CIERA Journal Club,Science,,5/16/2023,1,35,CIERA Caf�,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,592214,Observational Astro Meeting,Science,,5/17/2023,1,30,CIERA Caf�,2023 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,CIERA Interdisciplinary Colloquium: Nia Imara: Interconnected: A Journey Through Inner and Outer Space,Interdisciplinary,Other,5/18/2023,1,55,The Block Museum,2023 +CIERA - Theory Group Meetings,Academic Seminars,592313,CIERA Theory Group,Science,,5/19/2023,1,40,CIERA Caf�,2023 +CIERA - Annual Public Lecture Series,Public Outreach,600415,"CIERA Astronomy Night Out Featuring a Lecture by Dr. Allison Strom ""Sequencing the DNA of Galaxies with JWST"" ",Outreach|Science,Galaxies & Cosmology,5/19/2023,1,,Tech Lecture Room 2,2023 +CIERA - CIERA Connections,Future Leaders,600659,"CIERA Connections: Harry Kraemer ""Your 168: Finding Purpose and Satisfaction in a Values-Based Life""",Future Leaders|Interdisciplinary,,5/22/2023,1,60,CIERA Caf�,2023 +CIERA - Journal Clubs,Academic Seminars,592169,CIERA Journal Club,Science,,5/23/2023,1,35,CIERA Caf�,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,592215,Observational Astro Meeting,Science,,5/24/2023,1,30,CIERA Caf�,2023 +CIERA - Special Seminars,Future Leaders|Academic Seminars,,NICO Data Science Night,Outreach|Data Science & Computing|Interdisciplinary,Other,5/25/2023,1,6,Tech,2023 +CIERA - Theory Group Meetings,Academic Seminars,592314,CIERA Theory Group,Science,,5/26/2023,1,40,CIERA Caf�,2023 +CIERA - Astronomer Evenings,Public Outreach,594562,CIERA Astronomer Evenings,Outreach,,5/26/2023,1,20,Dearborn Observatory,2023 +CIERA - Journal Clubs,Academic Seminars,592170,CIERA Journal Club,Science,,5/30/2023,1,35,CIERA Caf�,2023 +CIERA - Journal Clubs,Academic Seminars,603818,CIERA Journal Club [copy],Science,,5/30/2023,1,35,CIERA Caf�,2023 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,589800,"Astro Seminar: Enrico Ramirez-Ruiz:"" Tidal Disruption of Stars by Supermassive Black Holes: What have we Learned and what can we Learn?""",Science,Black Holes & Dead Stars,5/30/2023,1,50,7th Floor Conf. Rm,2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,592216,Observational Astro Meeting,Science,,5/31/2023,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders,600964,CIERA Computing Workshop: Creating Your First Python Package,Professional Development|Data Science & Computing,,6/1/2023,1,,"CIERA, 7th Floor, 7-600",2023 +CIERA - Observational Astronomy Meetings,Academic Seminars,599737,Observational Astro Meeting,Science,,6/7/2023,1,30,CIERA Caf�,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601456,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/13/2023,1,,CIERA,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601457,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/20/2023,1,,CIERA,2023 +CIERA - Social Justice Meetings,Academic Seminars,601423,Climate Study Update,,,6/21/2023,1,,CIERA Caf�,2023 +CIERA - Special Seminars,Academic Seminars,,Chris (Yuan Qi) Ni,Science,,6/23/2023,1,40,,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601459,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,6/27/2023,1,,CIERA,2023 +CIERA - Astronomer Evenings,Public Outreach,594563,CIERA Astronomer Evenings,Outreach,,6/30/2023,1,25,Dearborn Observatory,2023 +CIERA - Conferences/Collab Meetings,Future Leaders|Conferences,601434,Code / Astro Conference,Interdisciplinary|Data Science & Computing|Professional Development,Other,7/10/2023,5,80,CIERA,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601485,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/11/2023,1,,CIERA,2023 +CIERA - Special Seminars,Academic Seminars,602078,Kerry Paterson: An Overview of the Euclid mission,Science,Other,7/12/2023,1,40,CIERA Cafe,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601486,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/18/2023,1,,CIERA,2023 +CIERA - Special Public Events,Public Outreach|Education,,Baxter Summer Scholars Program,Outreach|Education|Professional Development,,7/18/2023,1,10,Tech,2023 +CIERA - Astronomy on Tap,Public Outreach,602116,Out-of-This-World Brews: Moonstruck Extremophiles and Stellar Sips!,Outreach,,7/20/2023,1,34,"Five & Dime, 1026 Davis Street",2023 +CIERA - Special Public Events,Public Outreach|Education,,University of Chicago Office of Special Programs student visit,Education|Outreach|Interdisciplinary,,7/21/2023,1,9,CIERA,2023 +CIERA - Software Tutorials,Future Leaders|Community Events,601487,Computing Brown Bag Lunch for Students,Professional Development|Data Science & Computing,,7/25/2023,1,,"CIERA, 7th Floor, 7-600",2023 +CIERA - Special Seminars,Academic Seminars,,Sashwat Tanay,Science,,7/26/2023,1,40,,2023 +CIERA - Astronomer Evenings,Public Outreach,594564,CIERA Astronomer Evenings,Outreach,,7/28/2023,1,20,Dearborn Observatory,2023 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,602012,Astro Imaging Workshop 2023,Science|Data Science & Computing|Interdisciplinary,Other,7/31/2023,1,30,Mudd/CIERA Caf�,2023 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,602013,Zooniverse,Interdisciplinary|Public Outreach,,8/14/2023,4,22,CIERA,2023 +Development Events,Development/Strategic|Future Leaders,,REU+REACH Final Presentations VIP Observing,Professional Development,,8/18/2023,1,4,CIERA Caf�,2023 +CIERA - Special Seminars,Academic Seminars,603196,Lucy McNeill: Evolution of hot helium white dwarf binaries,Science,Stellar Dynamics & Stellar Populations,8/21/2023,1,50,CIERA Cafe,2023 +CIERA - Special Seminars,Academic Seminars,603195,Jenny Greene: The Red Universe UNCOVERed: Early Spectral results from JWST Treasury Survey UNCOVER,Science,Other,8/23/2023,1,50,CIERA Cafe,2023 +CIERA - Special Seminars,Academic Seminars,603194,Taeho Ryu: Two types of nuclear transients - tidal disruption events and disruptive collisions,Science,Galaxies & Cosmology,8/24/2023,1,40,CIERA Cafe,2023 +CIERA - Astronomer Evenings,Public Outreach,594565,CIERA Astronomer Evenings,Outreach,,8/25/2023,1,,Dearborn Observatory,2023 +CIERA - Conferences/Collab Meetings,Conferences,601429,MODEST-23: Star Clusters in the Post-Pandemic Era,Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,8/28/2023,5,115,Harris Hall,2023 +CIERA - Social Justice Meetings,Academic Seminars,603251,DEI Panel Discussion with Kelly Holley-Bockelmann & Smadar Naoz,,,8/31/2023,1,,,2023 +CIERA - Special Seminars,Academic Seminars,603731,Debatri Chattopadhyay: Pulsars through the lens of population modelling ,Science|Data Science & Computing,Stellar Dynamics & Stellar Populations,9/5/2023,1,40,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,603729,Yael Alush: Testing the No-Hair Theorem on Sgr A*- Revisited,Science,Galaxies & Cosmology|Life and Death of Stars,9/5/2023,1,40,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,603197,Shivani Bhandari,Science,Other,9/7/2023,1,40,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,603198,Christopher Irwin: Insights on the origin of low-luminosity GRBs from a revised shock breakout picture for GRB 060218,Science,Gravitational Waves & Multi-Messenger Astronomy,9/12/2023,1,40,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,603199,Travis Rector: How can astronomers help to address climate change?,Science|Interdisciplinary,Other,9/18/2023,1,40,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,604403,CIERA Journal Club,Science,,9/19/2023,1,35,CIERA Cafe,2024 +CIERA - Community Events,Community Events,,Academic Year Kickoff and Welcome,Interdisciplinary,,9/19/2023,1,,CIERA 8th floor,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603858,Observational Astronomy Meeting,Science,,9/20/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,604382,CIERA Theory Group,Science,,9/21/2023,1,40,CIERA Cafe,2024 +Development Events,Development/Strategic,,BoT Spotlight Presentation by Vicky Kalogera: Weinberg College Among the Stars,Science|Outreach,Other,9/22/2023,1,60,Allen Center,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603285,"Astrophysics Seminar: Chris Hamilton: ""It Takes Two: On the Secular and Stochastic Dynamics of the Weird Wide Binaries In the Milky Way""",Science|Interdisciplinary,Stellar Dynamics & Stellar Populations,9/26/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Journal Clubs,Academic Seminars,603819,CIERA Journal Club,Science,,9/26/2023,1,35,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603859,Observational Astronomy Meeting,Science,,9/27/2023,1,30,CIERA Cafe,2024 +CIERA - Software Tutorials,Future Leaders,604194,Introduction to Quest - Northwestern's High Performance Computing Cluster,Professional Development|Data Science & Computing,,9/28/2023,1,,"CIERA, 8th Floor, Boardroom",2024 +CIERA - Theory Group Meetings,Academic Seminars,603896,CIERA Theory Group,Science,,9/28/2023,1,40,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,594566,CIERA Astronomer Evenings,Outreach,,9/29/2023,1,20,Dearborn Observatory,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603291,"Astrophysics Seminar: Daniel Stark: ""Galaxies in the Reionization Era: New Insight from JWST""",Science,Galaxies & Cosmology,10/3/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Journal Clubs,Academic Seminars,603820,CIERA Journal Club,Science,,10/3/2023,1,35,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603860,Observational Astronomy Meeting,Science,,10/4/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603897,CIERA Theory Group,Science,,10/5/2023,1,40,CIERA Cafe,2024 +Development Events,Development/Strategic,,Fall 2023 BoV Meeting,,,10/5/2023,1,,CIERA,2024 +Development Events,Development/Strategic,,Fall 2023 APL Dinner,,,10/5/2023,1,,CIERA,2024 +CIERA - Annual Public Lecture Series,Public Outreach,600630,CIERA 15th Annual Public Lecture by Marcia Bartusiak,Outreach,Galaxies & Cosmology,10/5/2023,1,200,Cahn Auditorium,2024 +CIERA - Conferences/Collab Meetings,Conferences,602112,NASA Space Apps Challenge Chicago,Interdisciplinary|Education,Other,10/7/2023,3,60,CIERA,2024 +CIERA - Special Seminars,Academic Seminars,605700,CIERA Special Seminar: Leah Jenks: Gravitational Wave Probes of Parity Violation ,Science,Gravitational Waves & Multi-Messenger Astronomy,10/9/2023,1,40,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603821,CIERA Journal Club,Science,,10/10/2023,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603292,"Astrophysics Seminar: Pablo Laguna: ""Two Black Hole Stories from Numerical Relativity""",Science,Black Holes & Dead Stars,10/10/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603861,Observational Astronomy Meeting,Science,,10/11/2023,1,30,CIERA Cafe,2024 +CIERA - Software Tutorials,Future Leaders,605668,Computational Workshop: Python 3.12,Professional Development|Data Science & Computing,,10/12/2023,1,,"CIERA, 8th Floor, Boardroom",2024 +CIERA - Theory Group Meetings,Academic Seminars,603898,CIERA Theory Group,Science,,10/12/2023,1,40,CIERA Cafe,2024 +CIERA - Astronomy on Tap,Public Outreach,605906,The Vampires of the Universe - Fall into Back Holes with AoT,Outreach,Black Holes & Dead Stars,10/12/2023,1,40,"Begyle Brewing, 1800 W Cuyler Ave.",2024 +CIERA - Social Justice Meetings,Academic Seminars,605933,Climate Action Team Townhall,,,10/13/2023,1,,CIERA Cafe,2024 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,606079,NSF GRFP Writing Feedback Session,,,10/16/2023,1,,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,605701,CIERA Special Seminar: Floor Brekgaarden: Gravitational Wave Paleontology: a New Frontier to Probe the Lives of Massive Binary Stars across Cosmic History,Science,Gravitational Waves & Multi-Messenger Astronomy|Life and Death of Stars,10/16/2023,1,40,"CIERA, 7th Floor, 7-600",2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,603335,"Astrophysics Seminar: DJ Pasham: ""Repeating Extragalactic Nuclear Transients as Extreme Mass Ratio Binaries"" ",Science,Galaxies & Cosmology|Life and Death of Stars,10/17/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Journal Clubs,Academic Seminars,603822,CIERA Journal Club,Science,,10/17/2023,1,35,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603862,Observational Astronomy Meeting,Science,,10/18/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603899,CIERA Theory Group,Science,,10/19/2023,1,50,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Ashley Villar,Science,,10/24/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Special Seminars,Academic Seminars,,Soham Mandal,Science,,10/26/2023,1,40,,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Keith Hawkins,Science,,10/31/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Theory Group Meetings,Academic Seminars,603901,CIERA Theory Group,Science,,11/2/2023,1,40,CIERA Cafe,2024 +CIERA - Social Justice Meetings,Future Leaders|Community Events,607104,CIERA Mentorship Lunch,,,11/6/2023,1,,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603825,CIERA Journal Club,Science,,11/7/2023,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606001,"Astrophysics Seminar: Diana Powell: ""Microphysical Insights into Protoplanetary Disks and Exoplanet Atmospheres""",Science,Exoplanets & the Solar System,11/7/2023,1,50,7th Floor Conf. Rm,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603865,Observational Astronomy Meeting,Science,,11/8/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603902,CIERA Theory Group,Science,,11/9/2023,1,40,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607482,CIERA en Espanol,Interdisciplinary,,11/13/2023,1,,CIERA 8th floor,2024 +CIERA - Special Seminars,Academic Seminars,604198,CIERA Special Theory Group Meeting,Science,Other,11/13/2023,1,40,CIERA Cafe,2024 +CIERA - Special Seminars,Academic Seminars,,Subo Dong,Science,,11/13/2023,1,40,,2024 +CIERA - Special Seminars,Academic Seminars,,Nianyi Chen,Science,,11/13/2023,1,40,,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606002,"Astrophysics Seminar: Rob Simcoe: "" The Emergence of Circumgalactic Heavy Elements in the First Gyr with JWST/EIGER""",Science,Galaxies & Cosmology,11/14/2023,1,50,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603826,CIERA Journal Club,Science,,11/14/2023,1,35,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603866,Observational Astronomy Meeting,Science,,11/15/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603903,CIERA Theory Group,Science,,11/16/2023,1,40,CIERA Cafe,2024 +CIERA - Special Public Events,Public Outreach,,Warren Township High School Astronomy Career Panel,Outreach|Professional Development,,11/17/2023,1,20,"Gumee, Il",2024 +CIERA - Community Events,Community Events,607515,Tea Time,Interdisciplinary,,11/20/2023,1,,CIERA 8th floor,2024 +CIERA - Community Events,Community Events,607516,CIERA Winter Party Potluck,Interdisciplinary,,11/27/2023,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603828,CIERA Journal Club,Science,,11/28/2023,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,606003,"Astrophysics Seminar: Natasha Batalha, NASA: ""The Open Access Era of Exoplanet Characterization at the Onset of Next-Generation Telescopes""",Science,Exoplanets & the Solar System,11/28/2023,1,50,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603868,Observational Astronomy Meeting,Science,,11/29/2023,1,30,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603905,CIERA Theory Group,Science,,11/30/2023,1,40,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,606527,CIERA Astronomer Evenings: The Black Holes of Einstein's Relativity,Outreach,Black Holes & Dead Stars,12/1/2023,1,15,Dearborn Observatory,2024 +CIERA - Conferences/Collab Meetings,Conferences,601439,Intermediate-Mass Black Holes: New Science from Stellar Evolution to Cosmology,Science|Interdisciplinary,Black Holes & Dead Stars,12/2/2023,4,62,"Grand Caribe resort, San Pedro, Belize",2024 +CIERA - Community Events,Community Events,607517,Tea Time,Interdisciplinary,,12/4/2023,1,,CIERA 8th floor,2024 +CIERA - Astronomy on Tap,Public Outreach,607491,Merry Chirp-mass: Carol of the Waves,Outreach,Gravitational Waves & Multi-Messenger Astronomy,12/7/2023,1,55,"Begyle Brewing, 1800 W Cuyler Ave.",2024 +CIERA - Social Justice Meetings,Community Events,607483,CIERA en Espanol,,,12/11/2023,1,,,2024 +CIERA - Community Events,Community Events,607518,Tea Time,Interdisciplinary,,12/11/2023,1,,CIERA 8th floor,2024 +CIERA - Community Events,Community Events,607519,Tea Time,Interdisciplinary,,12/18/2023,1,,CIERA 8th floor,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,R Process Element Meeting,Science,,12/19/2023,1,8,CIERA ,2024 +CIERA - Community Events,Community Events,607520,Tea Time,Interdisciplinary,,12/25/2023,1,,CIERA 8th floor,2024 +CIERA - Community Events,Community Events,607521,Tea Time,Interdisciplinary,,1/1/2024,1,,CIERA 8th floor,2024 +CIERA - Community Events,Community Events,607522,Tea Time,Interdisciplinary,,1/8/2024,1,,CIERA 8th floor,2024 +CIERA - Social Justice Meetings,Community Events,607484,CIERA en Espanol,,,1/8/2024,1,,,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608751,"Astrophysics Seminar: Harley Katz: ""Challenging our Understanding of High-redshift Galaxy Formation with JWST Observations""",Science,Other,1/9/2024,1,50,CIERA Cafe,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,609499,SAGURO Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,1/11/2024,1,,CIERA,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603874,Observational Astronomy Meeting,Science,,1/12/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607523,Tea Time,Interdisciplinary,,1/15/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603835,CIERA Journal Club,Science,,1/16/2024,1,50,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607079,"Astrophysics Seminar: Nahum Arav: ""The Contribution of Quasar Absorption Outflows to AGN Feedback""",Science,Galaxies & Cosmology,1/16/2024,1,50,CIERA Cafe,2024 +CIERA - Special Public Events,Education,,CPS Physics Night,Outreach|Education,,1/17/2024,1,15,"Von Steuben High School, Chicago",2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,609500,SAGURO Collaboration Meeting,Science|Interdisciplinary,Gravitational Waves & Multi-Messenger Astronomy,1/17/2024,2,,,2024 +CIERA - Theory Group Meetings,Academic Seminars,603912,CIERA Theory Group,Science,,1/18/2024,1,40,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603875,Observational Astronomy Meeting,Science,,1/19/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607524,Tea Time,Interdisciplinary,,1/22/2024,1,,CIERA 8th floor,2024 +CIERA - Community Events,Community Events,609596,Mentorship Lunch,Interdisciplinary,,1/22/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603836,CIERA Journal Club,Science,,1/23/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607165,Astrophysics Seminar: Quinn Konopacky: Constraining Planet Formation with Spectroscopy of Direct Imaged Planets,Science|Interdisciplinary,Exoplanets & the Solar System,1/23/2024,1,50,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603913,CIERA Theory Group,Science,,1/25/2024,1,40,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,606528,CIERA Astronomer Evenings,Outreach,,1/26/2024,1,30,Dearborn Observatory,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603876,Observational Astronomy Meeting,Science,,1/26/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607525,Tea Time,Interdisciplinary,,1/29/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603837,CIERA Journal Club,Science,,1/30/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608752,"Astrophysics Seminar: Jessie Dotson: ""The Asteroid Threat Assessment Project""",Science|Interdisciplinary,Exoplanets & the Solar System,1/30/2024,1,50,CIERA Cafe,2024 +CIERA - CROCS,Public Outreach|Education,,CROCS: Chicago Military Bronzeville,Outreach|Education|Professional Development,Other,1/31/2024,1,25,Chicago Military Bronzeville,2024 +CIERA - Community Events,Community Events,607485,CIERA en Espanol,Interdisciplinary,,2/1/2024,1,,CIERA 8th floor,2024 +CIERA - Theory Group Meetings,Academic Seminars,603914,CIERA Theory Group,Science,,2/1/2024,1,40,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603877,Observational Astronomy Meeting,Science,,2/2/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607526,Tea Time,Interdisciplinary,,2/5/2024,1,,CIERA 8th floor,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608753,Astrophysics Seminars: Jamie Rankin: ���New Insights into Cosmic Rays from Parker Solar Probe���,Science,Galaxies & Cosmology,2/6/2024,1,50,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603838,CIERA Journal Club,Science,,2/6/2024,1,35,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603915,CIERA Theory Group,Science,,2/8/2024,1,40,CIERA Cafe,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,CHIME/FRB Gemini LLP Collab Meeting,Science,,2/8/2024,2,,,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603878,Observational Astronomy Meeting,Science,,2/9/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607527,Tea Time,Interdisciplinary,,2/12/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603839,CIERA Journal Club,Science,,2/13/2024,1,35,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603879,Observational Astronomy Meeting,Science,,2/16/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607528,Tea Time,Interdisciplinary,,2/19/2024,1,,CIERA 8th floor,2024 +CIERA - Software Tutorials,Future Leaders|Academic Seminars,610698,Advanced Python Techniques I,Professional Development|Data Science & Computing,,2/19/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Journal Clubs,Academic Seminars,603840,CIERA Journal Club,Science,,2/20/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610561,"Astrophysics Seminar: Greg Herczeg:""Variability in the Growth of Stars and Planets""",Science,Life and Death of Stars,2/20/2024,1,50,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603917,CIERA Theory Group,Science,,2/22/2024,1,40,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,606529,CIERA Astronomer Evenings: Gravitational Waves & their detection,Outreach,Gravitational Waves & Multi-Messenger Astronomy,2/23/2024,1,9,Dearborn Observatory,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603880,Observational Astronomy Meeting,Science,,2/23/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607529,Tea Time,Interdisciplinary,,2/26/2024,1,,CIERA 8th floor,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,608328,"Astrophysics Seminar:Alex Ciprijanovic: ""Bridging the Gap Between Astronomical Datasets: From Proof of Concept to AI Model Deployment with Domain Adaptation""",Science|Interdisciplinary|Data Science & Computing,Other,2/27/2024,1,50,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603841,CIERA Journal Club,Science,,2/27/2024,1,35,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603918,CIERA Theory Group,Science,,2/29/2024,1,40,CIERA Cafe,2024 +CIERA - Social Justice Meetings,Academic Seminars,610757,CIERA Allyship and Advocacy Workshop,,,3/4/2024,1,,CIERA Cafe,2024 +CIERA - Software Tutorials,Future Leaders|Academic Seminars,609769,Special Computational Workshop: Quest OnDemand,Professional Development|Data Science & Computing,,3/4/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Community Events,Community Events,607530,Tea Time,Interdisciplinary,,3/4/2024,1,,CIERA 8th floor,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,607166,"Astrophysics Seminar: Carl Fields: ""Next-Generation Simulations of The Remarkable Deaths of Massive Stars""",Science|Data Science & Computing,Life and Death of Stars,3/5/2024,1,50,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,603842,CIERA Journal Club,Science,,3/5/2024,1,35,CIERA Cafe,2024 +CIERA - Social Justice Meetings,Community Events,607486,CIERA en espa�ol,,,3/7/2024,1,,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603919,CIERA Theory Group,Science,,3/7/2024,1,40,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603882,Observational Astronomy Meeting,Science,,3/8/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607531,Tea Time,Interdisciplinary,,3/11/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,611634,CIERA Journal Club,Science,,3/12/2024,1,35,CIERA Cafe,2024 +CIERA - Astronomy on Tap,Public Outreach,610942,3.141Pi: Exploring the Universe One Slice at a Time,Outreach,Other,3/14/2024,1,89,"Begyle Brewing, 1800 W Cuyler Ave.",2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,611661,Observational Astronomy Meeting [copy],Science,,3/15/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607532,Tea Time,Interdisciplinary,,3/18/2024,1,,CIERA 8th floor,2024 +CIERA - Special Public Events,Public Outreach,,Spring Stargazing and the Upcoming Eclipse with Northwestern,Outreach|Education,,3/19/2024,1,30,"Evanston Public Library: 1801 Main St, Evanston Il",2024 +CIERA - Community Events,Community Events,607533,Tea Time,Interdisciplinary,,3/25/2024,1,,CIERA 8th floor,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,611509,"Astrophysics Seminar: Sean Ressler: ""Cleaning Up The Dirty Astrophysical Parts: Novel Approaches to Simulating Black Hole Accretion """,Science|Data Science & Computing,Black Holes & Dead Stars,3/26/2024,1,50,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603922,CIERA Theory Group,Science,,3/28/2024,1,40,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,606530,CIERA Astronomer Evenings,Outreach,,3/29/2024,1,22,Dearborn Observatory,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,611645,Observational Astronomy Meeting,Science,,3/29/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,607534,Tea Time,Interdisciplinary,,4/1/2024,1,,CIERA 8th floor,2024 +CIERA - CROCS,Public Outreach|Education,,CROCS,Outreach|Education|Professional Development,Other,4/1/2024,1,116,Build Chicago: 5100 W Harrison St,2024 +CIERA - Community Events,Community Events,611635,Grad Student Ice Cream Social,Interdisciplinary,,4/2/2024,1,,CIERA 8th floor,2024 +CIERA - Software Tutorials,Future Leaders,612712,Introduction to Databases I,Professional Development|Data Science & Computing,,4/3/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Theory Group Meetings,Academic Seminars,603923,CIERA Theory Group,Science,,4/4/2024,1,40,CIERA Cafe,2024 +CIERA - CROCS,Public Outreach|Education,,CROCS,Outreach|Education|Professional Development,Other,4/5/2024,1,225,"Chute Middle School, Evanston Il",2024 +CIERA - Special Public Events,Public Outreach,,Solar Eclipse 2024 Buildup,,,4/5/2024,1,200,Tech,2024 +CIERA - Special Public Events,Public Outreach,,Solar Eclipse Presentation,,,4/6/2024,1,41,"The Mather, Evanston Il",2024 +CIERA - Special Public Events,Public Outreach,,Pre-Eclipse Science Talks,Outreach,,4/7/2024,1,230,"Carmel, Indiana",2024 +CIERA - Community Events,Community Events,607535,Tea Time,Interdisciplinary,,4/8/2024,1,,CIERA 8th floor,2024 +CIERA - Special Public Events,Future Leaders|Education,,Eclipse at MESH 2024,Outreach | Interdisciplinary,Other,4/8/2024,1,65,"CEEM, Indiana University, Bloomington Indiana",2024 +CIERA - Journal Clubs,Academic Seminars,603847,CIERA Journal Club,Science,,4/9/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Brant Robertson,Science,,4/9/2024,1,50,,2024 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group: Vikram Dwarkadas,Science,,4/11/2024,1,40,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603887,Observational Astronomy Meeting,Science,,4/12/2024,1,30,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Jeff Cooke,Science,,4/12/2024,1,50,,2024 +CIERA - CIERA Connections,Future Leaders|Academic Seminars,612570,STEM Careers in the Public Sector: from National Labs to Police Accountability to the Federal Government.,Future Leaders|Interdisciplinary|Data Science & Computing,,4/15/2024,1,40,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610662,"Astrophysics Seminar: Ted Bergin: ""Linking Planet Formation to Exoplanet Composition""",Science,Exoplanets & the Solar System,4/16/2024,1,50,CIERA Cafe,2024 +CIERA - Software Tutorials,Future Leaders,612713,Introduction to Databases II,Future Leaders|Data Science & Computing,,4/17/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Theory Group Meetings,Academic Seminars,603925,CIERA Theory Group,Science,,4/18/2024,1,40,CIERA Cafe,2024 +CIERA - Special Public Events,Future Leaders|Education,,Baxter Symposium 2024,Education|Outreach|Interdisciplinary,,4/18/2024,1,35,Dearborn Observatory|NU Allen Center,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603888,Observational Astronomy Meeting,Science,,4/19/2024,1,30,CIERA Cafe,2024 +CIERA - CROCS,Public Outreach|Education,,CROCS,Future Leaders|Outreach|Education,Other,4/20/2024,1,16,"NU Academy, Chicago, Il",2024 +CIERA - Community Events,Community Events,607537,Tea Time,Interdisciplinary,,4/22/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603849,CIERA Journal Club,Science,,4/23/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610663,Astrophysics Seminar:Diana Powell: TBA,Science,,4/23/2024,1,50,CIERA Cafe,2024 +CIERA - Theory Group Meetings,Academic Seminars,603926,CIERA Theory Group,Science,,4/25/2024,1,40,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,603889,Observational Astronomy Meeting,Science,,4/26/2024,1,30,CIERA Cafe,2024 +CIERA - Astronomer Evenings,Public Outreach,606531,CIERA Astronomer Evenings,Outreach,,4/26/2024,1,15,Dearborn Observatory,2024 +CIERA - Community Events,Community Events,607538,Tea Time,Interdisciplinary,,4/29/2024,1,,CIERA 8th floor,2024 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,611553,"CIERA Mentoring Lunch: ""Building Inclusive Graduate Programs - A Pilot in Physics""",,,4/29/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,603850,CIERA Journal Club,Science,,4/30/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,610664,Astrophysics Seminar:Scott Ransom: TBA,Science,,4/30/2024,1,50,CIERA Cafe,2024 +CIERA - Software Tutorials,Future Leaders,,Introduction to Web Development with PHP,Future Leaders|Data Science & Computing,,5/1/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Theory Group Meetings,Academic Seminars,,CIERA Theory Group,Science,,5/2/2024,1,40,CIERA Cafe,2024 +CIERA - CIERA Connections,Future Leaders,,"Dan Abramov, ""Navigating the Cosmos: Lessons Learned for a career in Astrophysics, Planetary Science, and Aerospace Industries""",Future Leaders|Interdisciplinary,,5/6/2024,1,27,CIERA,2024 +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,5/6/2024,1,,CIERA 8th floor,2024 +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/7/2024,1,35,CIERA Cafe,2024 +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,5/7/2024,1,,CIERA 8th floor,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Todd Thompson,Science,,5/7/2024,1,50,CIERA Cafe,2024 +CIERA - Astronomy on Tap,Public Outreach,,Astronomy on Tap : Pop the Bubbles for Hubble - Happy 34th Birthday,Outreach,Other,5/9/2024,1,22,"Begyle Brewing, 1800 W Cuyler Ave.",2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/10/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,5/13/2024,1,,CIERA 8th floor,2024 +CIERA - Interdisciplinary Colloquia,Academic Seminars,,"CIERA Interdisciplinary Colloquium: Thomas Zurbuchen: ""How NASA is Exploring the Secrets of the Universe and Improving Life on Earth: Role of Commercial and International Partnerships""",Interdisciplinary|Science,Other,5/13/2024,1,70,CIERA Cafe,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,LIGO Collaboration Meeting,Science,Gravitational Waves & Multi-Messenger Astronomy,5/13/2024,2,,CIERA,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Chris Reynolds,Science,,5/14/2024,1,50,,2024 +CIERA - Software Tutorials,Future Leaders,,Build a PHP website and/or database workshop,Future Leaders|Data Science & Computing,,5/15/2024,1,,"CIERA, 7th floor, Rubin Room",2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/17/2024,1,30,CIERA Cafe,2024 +CIERA - Annual Public Lecture Series,Public Outreach,,"Astronomy Night Out featuring Caitlin Witt, ""Tuning into the Cosmic Symphony: Pulsar Timing, the Gravitational Wave Background, and Beyond""",Outreach|Education,Gravitational Waves & Multi-Messenger Astronomy,5/17/2024,1,195,Tech Lecture Room 3,2024 +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/21/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Marla Geha,Science,,5/21/2024,1,50,,2024 +CIERA - CIERA Connections,Future Leaders,,"Tom Ilyevksy and Tayler Jennings, ""From Academic to Quantitative Research at IMC Trading""",Future Leaders|Interdisciplinary,,5/22/2024,1,54,CIERA Cafe,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,5/24/2024,1,30,CIERA Cafe,2024 +CIERA - Journal Clubs,Academic Seminars,,CIERA Journal Club,Science,,5/28/2024,1,35,CIERA Cafe,2024 +Physics and Astronomy Astrophysics Seminars,Academic Seminars,,Pascale Garaud,Science,,5/28/2024,1,50,,2024 +CIERA - Astronomer Evenings,Public Outreach,,CIERA Astronomer Evenings,Outreach,,5/31/2024,1,20,Dearborn Observatory,2024 +CIERA - Social Justice Meetings,Future Leaders|Academic Seminars,,"Mentorship, the Key to Success Workshop",,,6/3/2024,1,,CIERA Cafe,2024 +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,6/4/2024,1,,CIERA 8th floor,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,JointNU-UChicago Galaxy Formation Meeting,Science,Galaxies & Cosmology,6/5/2024,1,,CIERA,2024 +CIERA - Observational Astronomy Meetings,Academic Seminars,,Observational Astronomy Meeting,Science,,6/7/2024,1,30,CIERA Cafe,2024 +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,6/10/2024,1,,CIERA 8th floor,2024 +CIERA - Special Seminars,Academic Seminars,,"CIERA Special Seminar, Aditya Vijaykumar - ""Probing the host of environments of compact binaries""",Science,Other,6/11/2024,1,40,CIERA,2024 +CIERA - Conferences/Collab Meetings,Collab/Group Meetings,,CMC/COSMIC Collaboration Meeting,Science|Data Science & Computing|Interdisciplinary,,6/13/2024,2,,CIERA,2024 +CIERA - Community Events,Community Events,,CIERA en espanol,Interdisciplinary,,6/18/2024,1,,CIERA 8th floor,2024 +CIERA - Social Justice Meetings,Future Leaders,,CIERA Mentor Training Workshop,,,6/19/2024,2,,"CIERA 7th Floor, 7-600",2024 +CIERA - Community Events,Community Events,,Tea Time,Interdisciplinary,,6/24/2024,1,,CIERA 8th floor,2024 +CIERA - Astronomer Evenings,Public Outreach,606531,CIERA Astronomer Evenings,Outreach,,6/28/2024,1,,Dearborn Observatory,2024 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 +,,,,,,,,,,1900 diff --git a/visit_dash_lib/interface.py b/visit_dash_lib/interface.py new file mode 100644 index 0000000..4e6d1e0 --- /dev/null +++ b/visit_dash_lib/interface.py @@ -0,0 +1,685 @@ +'''Code for user interaction. +''' +import copy +import os +from typing import Union, Tuple +import warnings + +import numpy as np +import pandas as pd +import streamlit as st +import calendar + +import matplotlib +import matplotlib.pyplot as plt +import matplotlib.font_manager as font_manager +import seaborn as sns + +from visit_dash_lib import utils + +from .settings import Settings + +class Interface: + '''Main interaction object. + + Args: + config: The config dictionary. + ''' + + def __init__(self, config: dict, settings: Settings): + + self.config = config + self.settings = settings + + def request_data_axes( + self, + st_loc, + max_year, + min_year, + ask_for: list[str] = ['aggregation_method', 'x_column', 'y_column', 'groupby_column'], + local_key: str = None, + display_defaults: dict = {}, + display_options: dict = {}, + aggregation_method: str = 'count', + selected_settings: dict = None, + ) -> dict: + '''Add to st_loc widgets commonly used to set up the axes of a plot. + + Args: + st_loc: Streamlit object (st or st.sidebar) indicating where to place. + ask_for: Keys for widgets to include. + display_defaults: Default values the user sees in the widgets. + display_options: Options the user sees in the widgets. + aggregation_method: Different aggregation methods have different + aggregation methods. If the aggregation method isn't provided by + a widget then it defaults to this value. + selected_settings: Where the settings should be stored. Defaults to common data settings. + + Returns: + selected_settings: Current values in the dictionary the settings are stored in. + ''' + + # Update the display defaults with any values that exist in the settings + settings_dict = self.settings.get_settings( + local_key=local_key, + common_to_include=['data',] + ) + display_defaults.update(settings_dict) + + if selected_settings is None: + selected_settings = self.settings.common['data'] + + # We have to add the data settings to a dictionary piece-by-piece + # because as soon as they're called the user input exists. + key = 'aggregation_method' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'How do you want to aggregate the data?', + options = display_options.get(key, ['count', 'sum']), + index = display_defaults.get(key + '_ind', 0), + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + else: + selected_settings['aggregation_method'] = aggregation_method + key = 'x_column' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'How do you want to bin the data in time?', + options = display_options.get('x_column', self.config['x_columns']), + index = display_defaults.get(key + '_ind', 0), + ) + + if value == 'Year(Flexible)': + month_dict = {'January(Calendar Year)':1, 'February':2, 'March':3,'April(Reporting Year)':4,'May':5,'June':6,'July':7,'August':8,'September(Fiscal Year)':9,'October':10,'November':11,'December':12} + col1, col2 = st_loc.columns(2) + with col1: + value_month, ind_month = selectbox( + st_loc, + 'starting month for twelve-month recording period', + options = list(month_dict.keys()) + ) + value = value + ':' + str(month_dict[value_month]) + with col2: + if month_dict[value_month] >= 9: + min_year = min_year - 1 + start_year, end_year = st_loc.select_slider( + 'years to view', + options=list(range(min_year,max_year+1)), + value=(min_year, max_year), + ) + value = value + ':' + str(start_year) + ':' + str(end_year) + + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + + key = 'y_column' + if key in ask_for: + if selected_settings['aggregation_method'] == 'count': + value, ind = selectbox( + st_loc, + 'What do you want to count unique entries of?', + display_options.get(key, self.config['id_columns']), + index=display_defaults.get(key + '_ind', 0), + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + elif selected_settings['aggregation_method'] == 'sum': + value, ind = selectbox( + st_loc, + 'What do you want to sum?', + display_options.get('y_column', self.config['numerical_columns']), + index=display_defaults.get(key + '_ind', 0), + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'groupby_column' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'What do you want to categorize the data by?', + options=display_options.get('groupby_column', self.config['categorical_columns']), + index=display_defaults.get(key + '_ind', 0), + ) + + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + + return selected_settings + + + def request_data_settings( + self, + st_loc, + ask_for: list[str] = ['cumulative', 'recategorize', 'combine_single_categories'], + local_key: str = None, + display_defaults: dict = {}, + selected_settings: dict = None, + tag: str = None, + ) -> dict: + '''Request common data settings from the user. + + Args: + st_loc: Streamlit object (st or st.sidebar) indicating where to place. + ask_for: Keys for widgets to include. + display_defaults: Default values the user sees in the widgets. + selected_settings: Where the settings should be stored. Defaults to common data settings. + tag: Unique tag that allows duplication of widgets. + + Returns: + selected_settings: Current values in the dictionary the settings are stored in. + ''' + + # Update the display defaults with any values that exist in the settings + settings_dict = self.settings.get_settings( + local_key=local_key, + common_to_include=['data',] + ) + display_defaults.update(settings_dict) + + if selected_settings is None: + selected_settings = self.settings.common['data'] + + + toggled_on = st_loc.toggle( + label='show total', + value=True, + ) + + st_loc.markdown('# Data Settings') + + # Setup the tag + if tag is None: + tag = '' + else: + tag += ':' + + key = 'cumulative' + if key in ask_for: + selected_settings[key] = st_loc.checkbox( + 'use cumulative values', + value=display_defaults.get(key, False), + key=tag + key + ) + key = 'recategorize' + if key in ask_for: + selected_settings[key] = st_loc.checkbox( + 'use combined categories (avoids double-counting entries)', + value=display_defaults.get(key, False), + key=tag + key + ) + if selected_settings.get('recategorize', False): + key = 'combine_single_categories' + if key in ask_for: + selected_settings[key] = st_loc.checkbox( + 'group all undefined categories as "Other"', + value=display_defaults.get(key, False), + key=tag + key + ) + + return selected_settings, toggled_on + + def process_filter_settings( + self, + st_loc, + df: pd.DataFrame, + ask_for: list[str] = ['text', 'categorical', 'numerical'], + local_key: str = None, + display_defaults: dict = {}, + value: str = None, + selected_settings: dict = None, + tag: str = None, + ) -> dict: + '''Request common data settings from the user. + + Args: + st_loc: Streamlit object (st or st.sidebar) indicating where to place. + df: The dataframe that will be filtered. Required because good defaults require it. + ask_for: Keys for widgets to include. + display_defaults: Default values the user sees in the widgets. + display_options: Options the user sees in the widgets. + selected_settings: Where the settings should be stored. Defaults to common filter settings. + tag: Unique tag that allows duplication of widgets. + + Returns: + selected_settings: Current values in the dictionary the settings are stored in. + ''' + + # Update the display defaults with any values that exist in the settings + settings_dict = self.settings.get_settings( + local_key=local_key, + common_to_include=['filters',] + ) + display_defaults.update(settings_dict) + + + if selected_settings is None: + selected_settings = self.settings.common['filters'] + + # Setup the tag + if tag is None: + tag = '' + else: + tag += ':' + + key = 'categorical' + if key in ask_for: + current = selected_settings.setdefault(key, {}) + key=tag + key + + + possible_columns = pd.unique(df[value]) + # Check the current values then the passed-in defaults + # for a default + default = current.get(value, possible_columns) + default = display_defaults.get(key, {}).get(value, default) + selected_settings[key][value] = st_loc.multiselect( + '"{}" column: What groups to include?'.format(value), + possible_columns, + default=default, + key=tag + key + ':' + value + ) + + return selected_settings + + def request_view_settings( + self, + st_loc, + ask_for: Union[list[str], str] = [ + 'font_scale', + 'seaborn_style', + 'fig_width', + 'fig_height', + 'font', + 'color_palette', + ], + local_key: str = None, + display_defaults: dict = {}, + display_options: dict = {}, + selected_settings: dict = None, + tag: str = None, + default_x: str = '', + default_y: str = '', + ): + '''Generic and common figure settings. + + Args: + st_loc: Streamlit object (st or st.sidebar) indicating where to place. + ask_for: Keys for widgets to include. If 'all' then all settings are used. + display_defaults: Default values the user sees in the widgets. + display_options: Options the user sees in the widgets. + aggregation_method: Different aggregation methods have different + aggregation methods. If the aggregation method isn't provided by + a widget then it defaults to this value. + selected_settings: Where the settings should be stored. Defaults to common view settings. + tag: Unique tag that allows duplication of widgets. + + Returns: + selected_settings: Current values in the dictionary the settings are stored in. + ''' + + # Update the display defaults with any values that exist in the settings + settings_dict = self.settings.get_settings( + local_key=local_key, + common_to_include=['view',] + ) + display_defaults.update(settings_dict) + + available_settings = [ + 'font_scale', + 'seaborn_style', + 'x_label', + 'y_label', + 'yscale', + 'x_lim', + 'y_lim', + 'xtick_spacing', + 'ytick_spacing', + 'linewidth', + 'marker_size', + 'fig_width', + 'fig_height', + 'include_legend', + 'legend_scale', + 'legend_x', + 'legend_y', + 'legend_ha', + 'legend_va', + 'include_annotations', + 'annotations_ha', + 'font', + 'color_palette', + 'category_colors', + 'totals', + 'month_reindex', + 'year_reindex', + 'kwargs' + ] + if ask_for == 'all': + ask_for = available_settings + unavailable_settings = [_ for _ in ask_for if _ not in available_settings] + if len(unavailable_settings) > 0: + warnings.warn( + 'The following settings were requested, but this function does' + ' not have widgets available for them:{}'.format(unavailable_settings) + ) + + if selected_settings is None: + selected_settings = self.settings.common['view'] + + # Setup the tag + if tag is None: + tag = '' + else: + tag += ':' + + key = 'x_label' + if key in ask_for: + selected_settings[key] = st_loc.text_input( + 'x label', + value=display_defaults.get(key, default_x), + key=tag + key, + ) + key = 'y_label' + if key in ask_for: + selected_settings[key] = st_loc.text_input( + 'y label', + value=display_defaults.get(key, default_y), + key=tag + key, + ) + key = 'yscale' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'y scale', + options=display_options.get(key, ['linear', 'log']), + index = display_defaults.get(key + '_ind', 0), + selectbox_or_radio='radio', + key=tag + key, + horizontal=True, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'x_lim' + if key in ask_for: + lower_col, upper_col = st_loc.columns(2) + with lower_col: + default = display_defaults.get(key, '') + if default is None: + default = '' + lower_lim = st_loc.text_input( + 'x lower limit', + value=default, + key=tag + key + 'lower', + ) + with upper_col: + default = display_defaults.get(key, '') + if default is None: + default = '' + upper_lim = st_loc.text_input( + 'x upper limit', + value=default, + key=tag + key + 'upper', + ) + try: + # This only works if the user entered something well-formed. + selected_settings[key] = (float(lower_lim), float(upper_lim)) + except ValueError: + selected_settings[key] = None + key = 'y_lim' + if key in ask_for: + lower_col, upper_col = st_loc.columns(2) + with lower_col: + default = display_defaults.get(key, '') + if default is None: + default = '' + lower_lim = st_loc.text_input( + 'y lower limit', + value=default, + key=tag + key + 'lower', + ) + with upper_col: + default = display_defaults.get(key, '') + if default is None: + default = '' + upper_lim = st_loc.text_input( + 'y upper limit', + value=default, + key=tag + key + 'upper', + ) + try: + # This only works if the user entered something well-formed. + selected_settings[key] = (float(lower_lim), float(upper_lim)) + except ValueError: + selected_settings[key] = None + key = 'xtick_spacing' + if key in ask_for: + default = display_defaults.get(key, '') + if default is None: + default = '' + value = st_loc.text_input( + 'x tick spacing', + value=default, + key=tag + key, + ) + if value == '': + selected_settings[key] = None + else: + selected_settings[key] = float(value) + key = 'ytick_spacing' + if key in ask_for: + default = display_defaults.get(key, '') + if default is None: + default = '' + value = st_loc.text_input( + 'y tick spacing', + value=default, + key=tag + key, + ) + if value == '': + selected_settings[key] = None + else: + selected_settings[key] = float(value) + key = 'linewidth' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'linewidth', + 0., + 10., + value=display_defaults.get(key, 2.) + ) + key = 'marker_size' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'marker size', + 0., + 100., + value=display_defaults.get(key, 50.) + ) + key = 'font_scale' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'font scale', + 0.1, + 2., + value=display_defaults.get(key, 1.), + key=tag + key, + ) + fig_width, fig_height = matplotlib.rcParams['figure.figsize'] + # The figure size is doubled because this is a primarily horizontal plot + fig_width *= 2. + key = 'seaborn_style' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'choose seaborn plot style', + display_options.get(key, ['whitegrid', 'white', 'darkgrid', 'dark', 'ticks',]), + index = display_defaults.get(key + '_ind', 0), + key=tag + key, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'fig_width' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'figure width', + 0.1*fig_width, + 2.*fig_width, + value=display_defaults.get(key, fig_width), + key=tag + key, + ) + key = 'fig_height' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'figure height', + 0.1*fig_height, + 2.*fig_height, + value=display_defaults.get(key, fig_height), + key=tag + key, + ) + key = 'include_legend' + if key in ask_for: + selected_settings[key] = st_loc.checkbox( + 'include legend', + value=display_defaults.get(key, True), + key=tag + key, + ) + if selected_settings.get('include_legend', False): + key = 'legend_scale' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'legend scale', + 0.1, + 2., + value=display_defaults.get(key, 1.32), + key=tag + key, + ) + key = 'legend_x' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'legend x', + 0., + 1.5, + value=display_defaults.get(key, 0.), + key=tag + key, + ) + key = 'legend_y' + if key in ask_for: + selected_settings[key] = st_loc.slider( + 'legend y', + 0., + 1.5, + value=display_defaults.get(key, 1.4), + key=tag + key, + ) + key = 'legend_ha' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'legend horizontal alignment', + ['left', 'center', 'right'], + index = display_defaults.get(key + '_ind', 0), + key=tag + key, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'legend_va' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'legend vertical alignment', + ['upper', 'center', 'lower'], + index = display_defaults.get(key + '_ind', 0), + key=tag + key, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'include_annotations' + if key in ask_for: + selected_settings[key] = st_loc.checkbox( + 'include annotations', + value=display_defaults.get(key, False), + key=tag + key, + ) + if selected_settings.get('include_annotations', False): + key = 'annotations_ha' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'annotations horizontal alignment', + ['left', 'center', 'right'], + index = display_defaults.get(key + '_ind', 0), + key=tag + key, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + key = 'color_palette' + if key in ask_for: + value, ind = selectbox( + st_loc, + 'color palette', + display_options.get(key, ['deep', 'colorblind', 'dark', 'bright', 'pastel', 'muted',]), + index = display_defaults.get(key + '_ind', 0), + key=tag + key, + ) + selected_settings[key] = value + selected_settings[key + '_ind'] = ind + + key = 'font' + if key in ask_for: + original_font = copy.copy(plt.rcParams['font.family'])[0] + # This can be finicky, so we'll wrap it in a try/except + try: + ## Get all installed fonts + font_fps = font_manager.findSystemFonts(fontpaths=None, fontext='ttf') + fonts = [os.path.splitext(os.path.basename(_))[0] for _ in font_fps] + ## Get the default font + default_font = font_manager.FontProperties(family='Sans Serif') + default_font_fp = font_manager.findfont(default_font) + default_index = int(np.where(np.array(font_fps) == default_font_fp)[0][0]) + ## Make the selection + font_ind = st_loc.selectbox( + 'Select font', + np.arange(len(fonts)), + index=default_index, + format_func=lambda x: fonts[x], + key=tag + key, + ) + font = font_manager.FontProperties(fname=font_fps[font_ind]) + selected_settings[key] = font.get_name() + except: + selected_settings[key] = original_font + + return selected_settings + +def selectbox( + st_loc, + label: str, + options: list[str], + index: int = 0, + selectbox_or_radio: str = 'selectbox', + **kwargs +) -> Tuple[str, int]: + '''Wrapper for st.selectbox that returns not just the selected + option, but the index of the selected option. + + Args: + st_loc: Streamlit object (st or st.sidebar) indicating where to place. + label: A short label explaining to the user what this select widget is for. + options: Labels for the select options. + index: The index of the preselected option. + selectbox_or_radio: Turn into a wrapper for st.radio by feeding + 'radio' to this argument. + ''' + + ind = getattr(st_loc, selectbox_or_radio)( + label = label, + options = range(len(options)), + index = index, + format_func = lambda index: options[index], + **kwargs + ) + + return options[ind], ind diff --git a/visit_dash_lib/pages/__init__.py b/visit_dash_lib/pages/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/visit_dash_lib/pages/base_page.py b/visit_dash_lib/pages/base_page.py new file mode 100644 index 0000000..03af72c --- /dev/null +++ b/visit_dash_lib/pages/base_page.py @@ -0,0 +1,222 @@ +'''This page is a template for creating a customized page with multiple panels. +This page deliberately avoids using too many functions to make it easier to +understand how to use streamlit. +''' +# Computation imports +import copy +import importlib +import os +import types + +import streamlit as st +import pandas as pd + +from .. import dash_builder, utils + +importlib.reload(dash_builder) + + +def main(config_fp: str, user_utils: types.ModuleType = None): + '''This is the main function that runs the dashboard. + + Args: + config_fp: The filepath to the configuration file. + user_utils: The module containing the user-defined functions. + Defaults to those in root_dash_lib. + ''' + + pd.options.mode.copy_on_write = True + # This must be the first streamlit command + st.set_page_config(layout='wide') + + # Get the builder used to construct the dashboard + builder = dash_builder.DashBuilder(config_fp, user_utils=user_utils) + + # Set the title that shows up at the top of the dashboard + st.title(builder.config.get('page_title','Dashboard')) + + # Prep data + data, config = builder.prep_data(builder.config) + builder.config.update(config) + + st.sidebar.markdown('# Settings Upload') + combined_settings = builder.settings.upload_button(st.sidebar) + + # Global settings + #st.sidebar.markdown('# Data Settings') + setting_check, toggle = builder.interface.request_data_settings(st.sidebar) + + st.sidebar.markdown('# View Settings') + builder.interface.request_view_settings(st.sidebar) + + # Recategorize data + selected_settings = builder.settings.common['data'] + data['recategorized'] = builder.recategorize_data( + preprocessed_df=data['preprocessed'], + new_categories=builder.config.get('new_categories', {}), + recategorize=selected_settings['recategorize'], + combine_single_categories=selected_settings.get( + 'combine_single_categories', + False + ), + ) + + # for future reference, if you want to set artificial bounds for year/timescale, do it here + min_year = data['preprocessed']['Start Date'].dt.year.min() + max_year = data['preprocessed']['Start Date'].dt.year.max() + + # Data axes + # entered search category passed down to filter settings for further specification + st.subheader('Data Axes') + axes_object = builder.interface.request_data_axes(st, max_year, min_year) + if axes_object['groupby_column'] == 'Origin(International/Domestic)': + builder.settings.common['data']['groupby_column'] = 'International' + print(axes_object) + # catches specified groupby category + category_specific = builder.settings.get_settings(common_to_include=['data']) + + + # filters data as per specs + builder.interface.process_filter_settings( + st, + data['recategorized'], + value=category_specific['groupby_column'] + ) + + # Apply data filters + data['selected'] = builder.filter_data( + data['recategorized'], + builder.settings.common['filters']['categorical'], + ) + + + + # filters data by year bounds selected (so that only entries which fall into this year-bound are displayed) + reverse_month_dict = {1:'January', 2:'February', 3:'March', 4:'April', 5:'May',6:'June', 7:'July', 8:'August', 9:'September', 10:'October', 11:'November', 12:'December'} + if (axes_object['x_column_ind'] == 0): + + + # extracts time information from axes_object + time_object = axes_object['x_column'].split(':') + month_start = int(time_object[1]) + year_start = int(time_object[2]) + year_end = int(time_object[3]) + years_to_display = list(range(year_start+1, year_end+1)) + + month_redef = [x if x<=12 else x-12 for x in range(month_start, 12+month_start)] + + + data['selected']['Reindexed Year'] = utils.get_year( + data['selected']['Start Date'], "{} 1".format(reverse_month_dict[month_start]) + ) + data['time_adjusted'] = data['selected'][data['selected']['Reindexed Year'] == year_start] + + if len(years_to_display) != 0: + for i in years_to_display: + temp = data['selected'][data['selected']['Reindexed Year'] == i] + data['time_adjusted'] = pd.concat([data['time_adjusted'], temp]) + + builder.settings.common['data']['x_column'] = 'Reindexed Year' + if len(years_to_display) == 0: + + # For Fiscal Month visualizations + def month_fisc_converter(month:int, forward=True): + return month_redef.index(month)+1 + + data['time_adjusted'].loc.__setitem__((slice(None), 'Reindexed Month'), data['time_adjusted'].__getitem__('Start Date').dt.month.map(month_fisc_converter)) + builder.settings.common['data']['x_column'] = 'Reindexed Month' + else: + data['time_adjusted'] = data['selected'] + builder.settings.common['data']['x_column'] = 'Calendar Year' + + # Aggregate data + data['aggregated'] = builder.aggregate( + data['time_adjusted'], + builder.settings.common['data']['x_column'], + builder.settings.common['data']['y_column'], + builder.settings.common['data']['groupby_column'], + builder.settings.common['data']['aggregation_method'], + ) + + # Aggregate data + data['totals'] = builder.aggregate( + data['time_adjusted'], + builder.settings.common['data']['x_column'], + builder.settings.common['data']['y_column'], + aggregation_method=builder.settings.common['data']['aggregation_method'], + ) + + + ### adds all years for which we have data back into aggregated dataframe (even if all zero that time bin); + # more accurately displays trends across multiple years + years_to_display.insert(0, year_start) + + # If you are going to change the configs for x_columns, make sure they are reflected below! + if len(list(data['aggregated'].columns)) != 0: + data['aggregated'] = data['aggregated'].T + data['totals'] = data['totals'].T + + if builder.settings.common['data']['x_column'] == 'Reindexed Month': + for month in month_redef: + if month not in data['aggregated'].columns: + data['aggregated'].insert(month-1, month, [0 for i in range(len(data['aggregated'].index))]) + data['totals'].insert(month-1, month, [0 for i in range(len(data['totals'].index))]) + elif builder.settings.common['data']['x_column'] == 'Reindexed Year': + for years in years_to_display: + if years not in data['aggregated'].columns: + data['aggregated'].insert(years-min(years_to_display), years, [0 for i in range(len(data['aggregated'].index))]) + data['totals'].insert(years-min(years_to_display), years, [0 for i in range(len(data['totals'].index))]) + + data['aggregated'] = data['aggregated'].T + data['totals'] = data['totals'].T + + # adds NaN values to dataframe for viewing + for topic in builder.settings.common['filters']['categorical'][category_specific['groupby_column']]: + if topic not in data['aggregated'].columns: + data['aggregated'][topic] = [0 for i in range(len(data['aggregated'].index))] + + # Lineplot + local_key = 'lineplot' + st.header(config.get('lineplot_header', 'Lineplot')) + st.text("Note: entries may correspond to multiple data tags/categories, and so may contribute to the trendline of each (double-counting).\n this results in a conflict between aggregated data and total trendline, which only counts each entry once.\n Users and audience must be made clear of this discrepancy; in essence, total single-counts, aggregate double-counts") + with st.expander('Lineplot settings'): + local_opt_keys, common_opt_keys, unset_opt_keys = builder.settings.get_local_global_and_unset( + function=builder.data_viewer.lineplot, + ) + builder.interface.request_view_settings( + st, + ask_for=unset_opt_keys, + local_key=local_key, + selected_settings=builder.settings.local.setdefault('lineplot', {}), + tag=local_key, + default_x=builder.settings.common['data']['x_column'], + default_y=builder.settings.common['data']['y_column'], + ) + local_opt_keys, common_opt_keys, unset_opt_keys = builder.settings.get_local_global_and_unset( + function = builder.data_viewer.lineplot, + local_key=local_key, + ) + + #constructs line plot with or without the 'total' line, depending on if relevant feature has been toggled + if toggle: + builder.data_viewer.lineplot( + df = data['aggregated'], + month_reindex = month_redef if builder.settings.common['data']['x_column_ind'] == 0 else None, + year_reindex = years_to_display, + totals = data['totals'], + **builder.settings.get_settings(local_key) + ) + else: + builder.data_viewer.lineplot( + df = data['aggregated'], + month_reindex = month_redef if builder.settings.common['data']['x_column_ind'] == 0 else None, + year_reindex=years_to_display, + **builder.settings.get_settings(local_key) + ) + + # View the data directly + builder.data_viewer.write(data) + + # Settings download button + st.sidebar.markdown('# Settings Download') + builder.settings.download_button(st.sidebar) \ No newline at end of file diff --git a/visit_dash_lib/settings.py b/visit_dash_lib/settings.py new file mode 100644 index 0000000..600651c --- /dev/null +++ b/visit_dash_lib/settings.py @@ -0,0 +1,136 @@ +'''Object for settings that get modified during use. +''' +import copy +import inspect +import json +import types +from typing import Tuple + +import streamlit as st + +class Settings: + '''Main settings object. + + Args: + config: The config dictionary. + ''' + + def __init__(self, config: dict): + + self.config = config + self.common = { + 'data': {}, + 'filters': {}, + 'view': {}, + } + self.local = {} + + def download_button( + self, + st_loc = st, + label: str = 'Download settings in JSON format.', + file_name: str = 'dash_settings.json', + ): + '''Download the settings as a json. + + Args: + st_loc: Where to place. Defaults to st, as opposed to st.sidebar. + label: Label seen by the user for the button. + file_name: What to save the downloaded file as. + ''' + + # Get dict to save + combined_settings = { + 'common': self.common, + 'local': self.local, + 'config': self.config, + } + json_string = json.dumps(combined_settings) + + # Download + st_loc.download_button( + label=label, + file_name=file_name, + mime="application/json", + data=json_string, + ) + + def upload_button( + self, + st_loc = st, + label: str = ( + 'Upload settings in JSON format.\n' + 'A settings download button is at the bottom.' + ), + ) -> dict: + '''Upload the settings and overwrite the class's values. + + Args: + st_loc: Where to place. Defaults to st, as opposed to st.sidebar. + label: Label seen by the user for the button. + + Returns + combined_settings: All settings combined into a dict. + ''' + + # Upload + file_content = st_loc.file_uploader(label=label, type='json') + if file_content is None: + return None + combined_settings = json.load(file_content) + + # Store appropriately + self.common = combined_settings['common'] + self.local = combined_settings['local'] + self.config = combined_settings['config'] + + # Return + return combined_settings + + def get_settings( + self, + local_key: str = None, + common_to_include: list[str] = ['data', 'filters', 'view'] + ) -> dict: + '''Get the full local settings, including global defaults. + + Args: + local_key: Local key to use, if given. + common_to_include: What global settings to incorporate. + + Returns: + settings_dict: The combination of settings used. + ''' + + settings_dict = {} + for common_key in common_to_include: + settings_dict.update(self.common[common_key]) + if local_key is not None: + settings_dict.update(self.local[local_key]) + + return settings_dict + + def get_local_global_and_unset( + self, + function: types.FunctionType, + local_key: str = None, + common_to_include: list[str] = ['data', 'filters', 'view'], + accounted_for: list[str] = ['self', 'kwarg', 'df', 'total', 'categories'], + ) -> Tuple[list[str], list[str], list[str]]: + + local_opt_keys = list(self.local.get(local_key, {}).keys()) + + common_opt_keys = set() + for common_key in common_to_include: + common_opt_keys = common_opt_keys.union(set(self.common[common_key].keys())) + common_opt_keys -= set(local_opt_keys) + common_opt_keys = list(common_opt_keys) + + unset_opt_keys = [ + arg for arg in inspect.signature(function).parameters + if not ((arg in local_opt_keys) | (arg in common_opt_keys) | (arg in accounted_for)) + ] + + return local_opt_keys, common_opt_keys, unset_opt_keys + + diff --git a/visit_dash_lib/user_utils.py b/visit_dash_lib/user_utils.py new file mode 100644 index 0000000..7589d0b --- /dev/null +++ b/visit_dash_lib/user_utils.py @@ -0,0 +1,201 @@ +'''Functions for loading and preprocessing the data, specific to +the user's data. If you are adapting the dashboard as your own, +you likely need to alter these functions. +''' +import os +import glob +import numpy as np +import pandas as pd + +from visit_dash_lib import utils + + +def load_data(config): + '''Modify this! + + This is the main function for loading the data + (but save cleaning and preprocessing for later). + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + raw_df (pandas.DataFrame): The data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + ''' + + ########################################################################## + # Filepaths + + input_dir = os.path.join(config['data_dir'], config['input_dirname']) + + def get_fp_of_most_recent_file(pattern): + '''Get the filepath of the most-recently created file matching + the pattern. We just define this here because we use it twice. + + Args: + pattern (str): The pattern to match. + + Returns: + fp (str): The filepath of the most-recently created file + matching the pattern. + ''' + fps = glob.glob(pattern) + ind_selected = np.argmax([os.path.getctime(_) for _ in fps]) + return fps[ind_selected] + + data_pattern = os.path.join(input_dir, config['website_data_file_pattern']) + data_fp = get_fp_of_most_recent_file(data_pattern) + + + # press_office_pattern = os.path.join( + # input_dir, config['press_office_data_file_pattern'] + # ) + # press_office_data_fp = get_fp_of_most_recent_file(press_office_pattern) + + ########################################################################## + # Load data + + # Website data + #os.chdir(os.path.dirname(os.path.abspath(__file__))) + website_df = pd.read_csv(data_fp, parse_dates=['Start Date',], encoding_errors='ignore') + #website_df['id'] = website_df.index + website_df.set_index(np.arange(len(website_df)), inplace=True) + #website_df.set_index('Calendar Group', inplace=True) + + #testing + + # website_df = pd.read_csv(data_fp, parse_dates=['Date',]) + # website_df.set_index('id', inplace=True) + + # # Load press data + # press_df = pd.read_excel(press_office_data_fp) + # press_df.set_index('id', inplace=True) + + # # Combine the data + # raw_df = website_df.join(press_df) + + return website_df, config + + +def clean_data(raw_df, config): + '''Modify this! + + This is the main function for cleaning the data, + i.e. getting rid of NaNs, dropping glitches, etc. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + raw_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + cleaned_df (pandas.DataFrame): The cleaned data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + for str_columns in ['Start Date', 'End Date']: + raw_df[str_columns] = pd.to_datetime(raw_df[str_columns], errors='coerce') + + # Drop rows where 'Date' year is 1970 + cleaned_df = raw_df[raw_df['Start Date'].dt.year != 1970] + cleaned_df = raw_df[raw_df['End Date'].dt.year != 1970] + + # # Drop drafts + # cleaned_df = raw_df.drop( + # raw_df.index[raw_df['Date'].dt.year == 1970], + # axis='rows', + # ) + + + + # Drop weird articles---ancient ones w/o a title or year + cleaned_df.dropna( + axis='rows', + how='any', + subset=['Start Date(Unix)', 'End Date(Unix)','Visitor Institution', 'Name'], + inplace=True, + ) + + #Calendar Group,Event Type Tags,id,Title,Category,Research Topic,Date,Attendance,Location,Year + + # Get rid of HTML ampersands + for str_column in ['Visitor Institution',]: + cleaned_df[str_column] = cleaned_df[str_column].str.replace('&', '&') + + # Handle NaNs, rounding, and other numerical errors + columns_to_fill = ['Visiting Days',] + cleaned_df[columns_to_fill] = cleaned_df[columns_to_fill].apply(round) + cleaned_df.fillna(value='N/A', inplace=True) + + return cleaned_df, config + + +def preprocess_data(cleaned_df, config): + '''Modify this! + + This is the main function for doing preprocessing, e.g. + adding new columns, renaming them, etc. + + For compatibility with the existing + dashboard, this function should accept a pandas DataFrame and a + config dictionary and return the same. + + Args: + cleaned_df (pandas.DataFrame): The raw data to be used in the dashboard. + config (dict): The configuration dictionary, loaded from a YAML file. + + Returns: + processed_df (pandas.DataFrame): The processed data. + config (dict): The (possibly altered) configuration dictionary. + ''' + + preprocessed_df = cleaned_df.copy() + + # Get the year, according to the config start date + #preprocessed_df['Fiscal Year'] = utils.get_year( + # preprocessed_df['Date'], config['start_of_year'] + #) + + preprocessed_df['Calendar Year'] = preprocessed_df['Start Date'].dt.year + + # Tweaks to the press data + #if 'Title (optional)' in preprocessed_df.columns: + # preprocessed_df.drop('Title (optional)', axis='columns', inplace=True) + #for column in ['Year']: + # preprocessed_df[column] = preprocessed_df[column].astype('Int64') + + # Now explode the data + #for group_by_i in config['groupings']: + # preprocessed_df[group_by_i] = preprocessed_df[group_by_i].str.split('|') + # preprocessed_df = preprocessed_df.explode(group_by_i) + + # Exploding the data results in duplicate IDs, + # so let's set up some new, unique IDs. + #preprocessed_df['id'] = preprocessed_df.index + preprocessed_df.set_index(np.arange(len(preprocessed_df)), inplace=True) + + #converts international boolean into text + def nameify(is_int): + if bool(is_int): + return 'International' + else: + return 'Domestic' + + preprocessed_df['International'] = preprocessed_df['International'].apply(nameify) + ## SHOULD remove any spaces before or after categories; allowing a bit more flexibility in data entry + #for group_by_i in config['groupings']: + # preprocessed_df[group_by_i] = preprocessed_df[group_by_i].str.strip() + + # This flag exists just to demonstrate you can modify the config + # during the user functions + config['data_preprocessed'] = True + + return preprocessed_df, config diff --git a/visit_dash_lib/utils.py b/visit_dash_lib/utils.py new file mode 100644 index 0000000..5d368d0 --- /dev/null +++ b/visit_dash_lib/utils.py @@ -0,0 +1,37 @@ +'''Miscellaneous useful functions. +''' + +import pandas as pd + + +def get_year(date, start_of_year='January 1', years_min=None, years_max=None): + '''Get the year from a date, with a user-specified start date + for the year. + This is commonly used for loading data, so it's kept in the user utils. + + Args: + date (datetime.datetime): The date to get the year from. + start_of_year (str): The start of the year, e.g. 'January 1'. + years_min (int): The minimum year to include. Defaults to the minimum year in the data. + years_max (int): The maximum year to include. Defaults to the maximum year in the data. + + Returns: + years (pd.Series of int): The year of the date. + ''' + + # Get date bins + if years_min is None: + years_min = date.min().year - 1 + if years_max is None: + years_max = date.max().year + 1 + date_bins = pd.date_range( + '{} {}'.format(start_of_year, years_min), + pd.Timestamp.now() + pd.offsets.DateOffset(years=1), + freq = pd.offsets.DateOffset(years=1), + ) + date_bin_labels = date_bins.year[:-1] + + # The actual binning + years = pd.cut(date, date_bins, labels=date_bin_labels).astype('Int64') + + return years