~ 1 min read

Simple GIS - Geographic Information System - with Python

Get a deeper look at your data by simply mapping and analyzing it with Python.

This browser does not support PDFs. Please download the PDF to view it: Download PDF.

geol_france = geo.create_gis_object_from_file(
    name='FranceGeol',
    file_path='geologie_france.shp'
)
geol_france.plot(
    column='Lithologie',
    alpha=0.6,
    legend=True
)

image

geol_wa = geo.create_gis_object_from_file(
    name='WesternAustraliaGeol',
    file_path='geologie_wa.shp'
)
geol_wa.plot(
    column=['Lithologie', 'Faults'],
    alpha=0.6,
    legend=True
)

image

geol_nc = geo.create_gis_object_from_file(
    name='NouvelleCaledonieGeol',
    file_path='geologie_nc.shp'
)
geol_nc.plot(
    column='Lithologie',
    alpha=0.6,
    legend=True
)

image

View on LinkedIn

Share: