Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTropospheric NO2 Monitoring using Sentinel-5P over Wuhan #699
Conversation
review-notebook-app
bot
commented
May 19, 2020
|
Check out this pull request on Review Jupyter notebook visual diffs & provide feedback on notebooks. Powered by ReviewNB |
|
@shivanip32 @priyankatuteja @moonlanderr hold off on reviewing this sample. There is a way programmatically search and download 5P data using There is one outstanding issue that I need to resolve in |
|
@AtmaMani, could you find time to update the steps for programmatically search and download 5P data using sentinelsat library and to convert netCDF to Raster layers using ArcPy and the new Raster object. |
|
@shivanip32 I have solved the programmatic download and added a few more enhancements (such as concurrent downloads etc.) I changed the analysis workflow to build out a multivariate multidimensional dataset for two different years and compare the no2 differences. You can find my work in progress notebooks here. I plan to finish this by the end of this sprint if everything works out. |
|
@AtmaMani Awesome! Looking forward to seeing the upcoming sample notebook. Meanwhile, closing this PR as discussed with @shivanip32 |
shivanip32 commentedMay 19, 2020
•
edited
Tropospheric NO2 Monitoring using Sentinel-5P over Wuhan
Checklist
Please go through each entry in the below checklist and mark an 'X' if that condition has been met. Every entry should be marked with an 'X' to be get the Pull Request approved.
imports are in the first cell? First block of imports are standard libraries, second block are 3rd party libraries, third block are allarcgisimports? Note that in some cases, for samples, it is a good idea to keep the imports next to where they are used, particularly for uncommonly used features that we want to highlight.GISobject instantiations are one of the following?gis = GIS()gis = GIS('https://www.arcgis.com', 'arcgis_python', 'P@ssword123')gis = GIS(profile="your_online_profile")gis = GIS('https://pythonapi.playground.esri.com/portal', 'arcgis_python', 'amazing_arcgis_123')gis = GIS(profile="your_enterprise_portal")./misc/setup.pyand/or./misc/teardown.py?<img src="base64str_here">instead of<img src="https://some.url">? All map widgets contain a static image preview? (Callmapview_inst.take_screenshot()to do so)os.path.join()? (Instead ofr"\foo\bar",os.path.join(os.path.sep, "foo", "bar"), etc.)