forked from ciesin-geospatial/TOPSTSCHOOL-air-quality
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Get the rocker image we want | ||
FROM rocker/binder:latest | ||
|
||
# Python Environment | ||
## python and pip | ||
RUN apt-get update | ||
RUN apt-get install -y python3 | ||
RUN apt-get install -y python3-pip | ||
## python geospatial | ||
RUN pip install geopandas pyproj shapely xarray rioxarray | ||
RUN pip install rasterio netcdf4 h5netcdf dask bottleneck | ||
RUN pip install numpy pandas nc-time-axis requests | ||
## exactextract | ||
### dependencies | ||
RUN pip install CMake pybind11 GEOS | ||
### latest on git | ||
RUN pip install git+https://github.com/isciences/exactextract.git | ||
|
||
CMD ["/init"] |