Skip to content

Instantly share code, notes, and snippets.

@ozgurozkok
Created January 30, 2023 16:23
Show Gist options
  • Save ozgurozkok/2d330617550a9a6066569a0140709f1c to your computer and use it in GitHub Desktop.
Save ozgurozkok/2d330617550a9a6066569a0140709f1c to your computer and use it in GitHub Desktop.
example of how to use SRID in Python with the GEOS library
from django.contrib.gis.geos import Point
point = Point(1, 1, srid=4326)
point.transform(3857)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment