This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Here’s the URL to a journal’s search results page for papers from the Geostationary Lightning Mapper that | |
| # were published from 2018-2021. There are several pages of results; below is an example of the third and final URL | |
| # Download the webpage. Do this for each page of the search results, changing the URL and output filename: | |
| curl "https://journals.ametsoc.org/search?access_0=all&fromDate=2018&page=3&pageSize=50&q1=geostationary+lightning+mapper&sort=relevance&toDate=2021" > page3dois.txt | |
| # Then concatenate all three files, and save out just the DOIs linked on each page. | |
| cat page[1-3]dois.txt | grep -Eoi '<a [^>]+>' | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cartopy.feature as cfeature | |
| import pyproj | |
| from shapely.geometry import Point | |
| from shapely.ops import transform as shapely_transform | |
| # Some location of interest. Also used as center of projection. | |
| wgs84_pt = Point(-72.2495, 43.886) | |
| # Set up projections |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: atmo5331 | |
| channels: | |
| - conda-forge | |
| dependencies: | |
| - python | |
| - jupyterlab | |
| - numpy | |
| - scipy | |
| - pandas | |
| - xarray |
OlderNewer