8000 GitHub - sandeepgadhwal/postgis2raster: converts postgis vector geometry to Gdal Rasters
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sandeepgadhwal/postgis2raster

Repository files navigation

postgis2raster

converts postgis vector geometry to Gdal Rasters

Eaxmple of Fishnets

Single Band Circle

postgis2raster.analysis_circle(
    table='mytable',
    output_raster='myimage.tif',
    query_x=16.55268272,
    query_y=40.82717010,
    radius=2500,
    cell_size=30
)

Single band circle

Multi Band Circle

postgis2raster.analysis_circle(
    table='mytable',
    output_raster='myimage.tif',
    query_x=16.55268272,
    query_y=40.82717010,
    radius=2500,
    cell_size=30,
    classes_to_bands=True
)

Multi band circle

Single Band Polygon

postgis2raster.analysis_polygon(
    table='mytable',
    output_raster='myimage.tif',
    query_x=16.55268272,
    query_y=40.82717010,
    height=5000,
    width=5000,
    cell_size=30
)

Single band circle

Multi Band Polygon

postgis2raster.analysis_polygon(
    table='mytable',
    output_raster='myimage.tif',
    query_x=16.55268272,
    query_y=40.82717010,
    height=5000,
    width=5000,
    cell_size=30,
    classes_to_bands=True
)

Multi band circle

About

converts postgis vector geometry to Gdal Rasters

Resources

Stars

Watchers

Forks

Packages

No packages published
0