Geospatial Data Processing

How to convert point data to raster file?

Creating raster file from point data Coverting point data shapefile to a raster file.¶ In [1]: import geopandas as gpd gdf=gpd.read_file("Synthetic_Subsidence_Data.shp") This code imports the Python package geopandas and reads in a shapefile named Synthetic_Subsidence_Data.shp using the read_file function from geopandas. What is shapefile? A shapefile is a popular geospatial vector data format used to store …

How to convert point data to raster file? Read More »

How to plot raster data in python?

Plotting Raster Data in python using Rasterio Plotting Raster Data in python using Rasterio¶ What is rasterio?¶ Rasterio is an open-source Python library for reading, writing, and manipulating geospatial raster data. It provides a high-level interface to the GDAL (Geospatial Data Abstraction Library) library, which is widely used for working with geospatial data. With Rasterio, …

How to plot raster data in python? Read More »

How to plot Shapefile in python using Geopandas Library?

Plotting Shapefiles using GEOPANDAS Plotting Shapefiles in python using GEOPANDAS¶ In this tutorial, we will be using Pandas, Geopandas, matplotlib python library to create beautiful maps. We will start first by importing this libraries In [1]: import geopandas as gpd import matplotlib.pyplot as plt Let’s understand what this libraries are: What is Geopandas?¶ Geopandas is an …

How to plot Shapefile in python using Geopandas Library? Read More »