https://github.com/Solcast/netcdf-tiff
NETCDF to GeoTIFF utility library
https://github.com/Solcast/netcdf-tiff
client-library gdal-api geotiff goes16 netcdf4 python3 satellite-imagery
Last synced: about 1 year ago
JSON representation
NETCDF to GeoTIFF utility library
- Host: GitHub
- URL: https://github.com/Solcast/netcdf-tiff
- Owner: Solcast
- License: mit
- Created: 2018-01-16T17:10:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-23T23:14:49.000Z (over 8 years ago)
- Last Synced: 2024-02-14T21:15:22.958Z (over 2 years ago)
- Topics: client-library, gdal-api, geotiff, goes16, netcdf4, python3, satellite-imagery
- Language: Python
- Homepage:
- Size: 1.61 MB
- Stars: 15
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/Solcast/netcdf-tiff)
# netcdf-tiff
NETCDF to GeoTIFF utility library
Python 3 library designed to extract GeoTIFF images from NETCDF4+ files. Working code extraction model is built for the GOES16 :satellite:
## Sample images produced
### Channel 2

### Channel 7

### Channel 13

#### Example code, complete Cloud and Moisture product [example](/example/goes16_cloud_moisture.py)
```python
conv_options = ConversionOptions(
filename="OR_ABI-L2-CMIPF-M3C02_G16_s20180161600431_e20180161611198_c20180161611267.nc",
output="my_test_image.tiff",
verbose=True,
debug=True)
goes16 = Goes16Converter(verbose=conv_options.verbose, debug=conv_options.debug)
result = goes16.extract(conv_options)
```
### Live GOES16 data sources
[NOAA](http://www.noaa.gov/) is currently producing data extracts for public use on [AWS](https://aws.amazon.com/). You should download and setup your [AWS CLI](https://aws.amazon.com/cli/) tool first in your choice of environment Linux/mac OS/Windows. There are scripts in the subfolder `/tests/data/` that will generate the command to obtain the latest netcdf files for you to work with
* [Linux/mac OS](/tests/data/get_goes16_data.sh)
* [Windows](/tests/data/get_goes16_data.ps1)
### Need help?
* [Forums](https://forums.solcast.com.au)
* [NOAA-GOES16](https://www.nesdis.noaa.gov/GOES-R-Series-Satellites)
* [GOES16 Band Reference](https://www.weather.gov/media/crp/GOES_16_Guides_FINALBIS.pdf)
### How to contribute
* Fork the repository
* Add something awesome
* Create a pull request
* :sun_with_face: Celebrate :sun_with_face:
License
-------
License can be found here: [LICENSE](LICENSE)