Useful Links http://darribas.org/gds15/slides/lecture_03.html http://darribas.org/gds15/index.html https://www.census.gov/geo/maps-data/maps/datamapper.html https://catalog.data.gov/dataset?res_format=KML
In [19]:
import geopandas as gp
%matplotlib inline
import matplotlib.pyplot as plt
import vincent
import numpy as np
import pandas as pd
import operator
import sys
import os
# Importing our contained utilities.
from utils import zillow_helpers as zh
sys.path.insert(0,'../')
%load_ext autoreload
%autoreload 2
In [3]:
df = pd.read_pickle('main&propinfo46.pickle')
In [22]:
df.plot.scatter('PropertyAddressLatitude', 'PropertyAddressLongitude')
Out[22]:
In [23]:
df_lat_long = df[['PropertyAddressLatitude', 'PropertyAddressLongitude']].copy()
In [24]:
df_lat_long.info()
In [25]:
df.info()
In [28]:
# conda install -c esri arcgis
from arcgis.gis import GIS
my_gis = GIS()
my_gis.map()
In [ ]: