Difference between revisions of "Creating Maps in Jupyter Notebook using GeoPandas"

From CUOSGwiki
Jump to navigationJump to search
(Created page with "==Introduction== ===About Jupyter=== Jupyter's advantages include that it is a free and open-source web application that also runs locally on your machine. This means that y...")
 
Line 4: Line 4:
 
Jupyter's advantages include that it is a free and open-source web application that also runs locally on your machine. This means that you can share and edit code easily with other people, but also have easy version controls saved to your machine.
 
Jupyter's advantages include that it is a free and open-source web application that also runs locally on your machine. This means that you can share and edit code easily with other people, but also have easy version controls saved to your machine.
 
I personally like using it the most because you can type code into kernels, and run those kernels individually. This will be demonstrated in the tutorial, but as a quick explanation -- the benefits to this include being able to test code easily, be able to quickly visualize a certain data table or in our case, create a map quickly without having to run all of the code at once.
 
I personally like using it the most because you can type code into kernels, and run those kernels individually. This will be demonstrated in the tutorial, but as a quick explanation -- the benefits to this include being able to test code easily, be able to quickly visualize a certain data table or in our case, create a map quickly without having to run all of the code at once.
  +
  +
  +
==The Tutorial==
  +
  +
===Step 1: Installing the software===

Revision as of 09:55, 11 December 2020

Introduction

About Jupyter

Jupyter's advantages include that it is a free and open-source web application that also runs locally on your machine. This means that you can share and edit code easily with other people, but also have easy version controls saved to your machine. I personally like using it the most because you can type code into kernels, and run those kernels individually. This will be demonstrated in the tutorial, but as a quick explanation -- the benefits to this include being able to test code easily, be able to quickly visualize a certain data table or in our case, create a map quickly without having to run all of the code at once.


The Tutorial

Step 1: Installing the software