Skip to content

maptimelex/nearest-love

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Where is your nearest love?

Thursday, February 13, 6pm–7pm | Miller Hall basement (map)

A mapping project for Maptime Lex Valentine's Day Special.

need map love

Valentine's Day Mapping

This project provides a high-level overview of a geospatial data project seeking to identify and map place names within the US containing Valentine's Day-related terms (such as "love" or "heart").

While the intent of maptimeLex event is fun (and perhaps a bit silly), we'll be introducing and covering the following process.

1. Data wrangling and transformation using Python within a Jupyter Notebook

Data source: US Domestic Geographic Names Database.

Recommended: First create a new virtual environment and launch the .pynb Jupyter Notebook(s) within that. An example of the installed Python packages is here: ./notebooks.bio-env.txt. Comments within the code cells indicate what's happening.

The love_mapping.ipynb Notebook provides some preliminary loading, exploration, filtering, and transformation of the dataset. The key Python libraries employed are:

  • pandas: used for quickly reading the tabular dataset into the Notebook, analyzing, and filtering
  • geopandas: used for quickly converting a pandas DataFrame (of tabular data) into a GeoDataFrame (with a geometry column attribute)
  • pysal: used to analyze the filtered points and create Voronoi polygons

The standard-library-version.ipynb Notebook tests a similar process for filtering data and writing the resultant point features to GeoJSON.

2. Quick plotting and analysis within a web map

The second part of this maptimeLex continues the data flow process from the Python/Jupyter Notebook stage into the frontend web mapping stage.

For demonstration purposes, we use Python (and the GeoPandas library in particular), to write our point features containing the string value "love" to file: data/love_points.json.

We then load this file into an HTML document (index.html). The HTML requests and loads the following JavaScript libraries:

  • Leaflet: the leading open-source JavaScript library for mobile-friendly interactive maps
  • d3-fetch: convenience module on to of the Fetch API, requests and parses data files into the DOM
  • Turf: library for geospatial analysis, performs a point in polygon test within this script to determine which point falls within any given voronoi polygon.

Resultant map can be viewed live: https://maptimelex.github.io/nearest-love/

About

Repo for Maptime Lex Valentine's Day Special

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published