Created
March 8, 2021 02:47
-
-
Save zronaghi/f5b1025432de1c6ee0c8e7fcffc93eb9 to your computer and use it in GitHub Desktop.
This file contains 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 cudf | |
obsfile = 'https://gmao.gsfc.nasa.gov/gmaoftp/geoscf/COVID_NO2/examples/obs.csv' | |
obsdat = cudf.read_csv(obsfile,parse_dates=['ISO8601'],date_parser=lambda x: dt.datetime.strptime(x, '%Y-%m-%dT%H:%M:%SZ')) | |
allobs = obsdat.loc[(obsdat['obstype']=='no2')] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment