{"id":21111657,"url":"https://github.com/jonathf/gis-course","last_synced_at":"2025-07-08T17:31:50.074Z","repository":{"id":83597772,"uuid":"50590738","full_name":"jonathf/gis-course","owner":"jonathf","description":"python notbook course: Introduction to GIS in Python","archived":false,"fork":false,"pushed_at":"2016-02-08T15:53:40.000Z","size":4242,"stargazers_count":8,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-15T10:02:33.160Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonathf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-28T15:04:38.000Z","updated_at":"2022-11-13T02:03:05.000Z","dependencies_parsed_at":"2023-03-01T14:15:50.912Z","dependency_job_id":null,"html_url":"https://github.com/jonathf/gis-course","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathf%2Fgis-course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathf%2Fgis-course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathf%2Fgis-course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathf%2Fgis-course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonathf","download_url":"https://codeload.github.com/jonathf/gis-course/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225449375,"owners_count":17476098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T01:10:09.680Z","updated_at":"2024-11-20T01:10:10.261Z","avatar_url":"https://github.com/jonathf.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction to GIS in Python\n\nGDAL is one of the most popular software libraries in C++ for working with GIS.\nThough, it has binding in Python, it is not very *Pythonic*.\nTo operate GDAL in Python more easily, we have `rasterio`, a frontend to GDAL's\nrastering features; `fiona`, a frontend to GDAL's vector features; and `pyproj`\na Python frontend to the `Proj.4` library. This tutorial gives a short\nintroduction to all three packages.\n\nThe tutorial is written in `Jupyter`/`Ipython notebook`. Start a session as\nfollows:\n```\n$ ipython3 notebook\n```\nBrowse and find and open the file `course.ipynb`.\n\n## Installation\n\nThe installation bellow assumes that the packages `numpy`, `scipy` and\n`matplotlib` are all installed.  (See http://scipy.org/ for more information on\nthese packages.)\n\nThe code used in the tutorial is all done in `Python3`. If your system uses\n`Python2` by default, use `pip3` instead of `pip` to install libraries.\n\n### Installation in Windows\n\nDownload GDAL from:\n`http://www.lfd.uci.edu/~gohlke/pythonlibs/#gdal`\n\nDownload Rasterio from:\n`http://www.lfd.uci.edu/~gohlke/pythonlibs/#rasterio`\n\nDownload Fiona from:\n`http://www.lfd.uci.edu/~gohlke/pythonlibs/#fiona`\n\nDownload Pyproj from:\n`http://www.lfd.uci.edu/~gohlke/pythonlibs/#pyproj`\n\nInstall binaries:\n```\npip install -U pip\npip install GDAL-2.0.2-cp35-none-win32.whl\npip install rasterio-0.31.0-cp35-none-win32.whl\npip install Fiona-1.6.3-cp35-none-win32.whl\npip install pyproj-1.9.5-cp35-none-win32.whl\n```\n\n### Installation in OSX\n\n```\nbrew install gdal\npip install rasterio\npip install fiona\npip isntall pyproj\n```\n\n### Installation in Ubuntu\n\nAdd PPA (not needed in 15.10):\n```\nsudo add-apt-repository ppa:ubuntugis/ppa\nsudo apt-get update\n```\n\nInstall GDAL library:\n```\nsudo apt-get install libgdal1h gdal-bin libgdal-dev\n```\n\nInstall packages:\n```\nsudo pip install rasterio\nsudo pip install fiona\nsudo pip install pyproj\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathf%2Fgis-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathf%2Fgis-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathf%2Fgis-course/lists"}