Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

PyRasterFrames

PyRasterFrames provides a Python API for RasterFrames!

To initialize PyRasterFrames:

>>> from pyrasterframes import *
>>> spark = SparkSession.builder \
...     .master("local[*]") \
...     .appName("Using RasterFrames") \
...     .config("spark.some.config.option", "some-value") \
...     .getOrCreate() \
...     .withRasterFrames()