All Projects → wildfirepy → Wildfirepy

wildfirepy / Wildfirepy

Licence: mit
WildfirePy, a Python library for Wildfire GIS data analysis.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Wildfirepy

Postgis
PostGIS spatial database extension to PostgreSQL [mirror]
Stars: ✭ 925 (+4304.76%)
Mutual labels:  gis
Vectorbt
Ultimate Python library for time series analysis and backtesting at scale
Stars: ✭ 855 (+3971.43%)
Mutual labels:  data-analysis
Spimedb
EXPLORE & EDIT REALITY
Stars: ✭ 14 (-33.33%)
Mutual labels:  gis
Resources
PyMC3 educational resources
Stars: ✭ 930 (+4328.57%)
Mutual labels:  data-analysis
Ziptastic Php
Official Ziptastic PHP Library
Stars: ✭ 9 (-57.14%)
Mutual labels:  gis
Pyda 2e Zh
📖 [译] 利用 Python 进行数据分析 · 第 2 版
Stars: ✭ 866 (+4023.81%)
Mutual labels:  data-analysis
Model Describer
model-describer : Making machine learning interpretable to humans
Stars: ✭ 22 (+4.76%)
Mutual labels:  data-analysis
Crunchbase Ml
Merge and Acquisitions Prediction based on M&A information from Crunchbase.
Stars: ✭ 20 (-4.76%)
Mutual labels:  data-analysis
Dataflowjavasdk
Google Cloud Dataflow provides a simple, powerful model for building both batch and streaming parallel data processing pipelines.
Stars: ✭ 854 (+3966.67%)
Mutual labels:  data-analysis
March Madness Data
NCAA brackets in JSON form
Stars: ✭ 14 (-33.33%)
Mutual labels:  data-analysis
Socrat
A Dynamic Web Toolbox for Interactive Data Processing, Analysis, and Visualization
Stars: ✭ 26 (+23.81%)
Mutual labels:  data-analysis
Cesium
An open-source JavaScript library for world-class 3D globes and maps 🌎
Stars: ✭ 8,095 (+38447.62%)
Mutual labels:  gis
Eda miner
Swiss army knife, but for visualization, analytics, and machine learning. View docs here: http://edaminer.com/docs/ and a demo (don't abuse) here: http://edaminer.com/
Stars: ✭ 13 (-38.1%)
Mutual labels:  data-analysis
Geography for hackers
Geography for Hackers - Teaching all how to hack geography, use GIS, and think spatially
Stars: ✭ 25 (+19.05%)
Mutual labels:  gis
Wetland Hydro Gee
Mapping wetland hydrological dynamics using Google Earth Engine (GEE)
Stars: ✭ 20 (-4.76%)
Mutual labels:  gis
Proj4.jl
Julia wrapper for the PROJ cartographic projections library
Stars: ✭ 23 (+9.52%)
Mutual labels:  gis
Data Science On Gcp
Source code accompanying book: Data Science on the Google Cloud Platform, Valliappa Lakshmanan, O'Reilly 2017
Stars: ✭ 864 (+4014.29%)
Mutual labels:  data-analysis
Osgearth
A 3D Mapping Engine & SDK for OpenSceneGraph.
Stars: ✭ 908 (+4223.81%)
Mutual labels:  gis
Kodiak
Enhance your feature engineering workflow with Kodiak
Stars: ✭ 20 (-4.76%)
Mutual labels:  data-analysis
Pandas Profiling
Create HTML profiling reports from pandas DataFrame objects
Stars: ✭ 8,329 (+39561.9%)
Mutual labels:  data-analysis

WildfirePy

Python application Python Online Tests Codestyle Documentation Status

WildfirePy is an open-source Python library for Wildfire GIS data analysis.

Installation

Use git to grab the latest version of wildfirepy:

git clone https://github.com/wildfirepy/wildfirepy.git

Once the downloading is done, you will have a copy of wildfirepy locally. In order to enable wildfirepy can be imported from any location on your local machine, you must make sure that the package is somewhere in your path as set up with the PYTHONPATH environmental variable.

Then you can install it locally by running the following command:

pip install -e .

at the root of the directory you have just downloaded.

Usage

Here is a quick example of downloanding some burnt area information from MODIS:

>>> from wildfirepy.net.usgs import ModisBurntAreaDownloader
>>> import matplotlib.pyplot as plt
>>> dl = ModisBurntAreaDownloader()
>>> jpg_file = dl.get_jpg(year=2020, month=2, latitude=28.7041, longitude=77.1025)
>>> plt.imshow(plt.imread(jpg_file))
>>> plt.show()

Getting Help

For more information or to ask questions about WildfirePy, check out:

Contributing

If you would like to get involved, start by joining the IRC chat room named #wildfirepy on Element. You may follow our LinkedIn and Twitter handle as well!

Contribution is always welcome so do let us know what you would like to work on, and you can do so via our IRC. Alternatively, do check out our issues tracker for a list of some known outstanding items, or open new issues if you have encountered a bug, have a feature request, or got some question(s) regarding our project you would like to discuss.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].