Session: Talk – SIUE THATCamp 2016 http://siue2016.thatcamp.org Engaging Communities Through Digital Humanities Thu, 16 Jun 2016 20:04:50 +0000 en-US hourly 1 https://wordpress.org/?v=4.9.12 Mapmaking session notes http://siue2016.thatcamp.org/2016/06/11/mapmaking-session-notes/ Sat, 11 Jun 2016 17:31:15 +0000 http://siue2016.thatcamp.org/?p=336

Facilitator: Kristine Hildebrandt

We looked at some example maps in addition to the ones I included in the session proposal:

medievaldigital.ace.fordham.edu/exhibits/show/oxford-outremer-map/interactive-map

neatline.dclure.org/neatline/show/declaration-of-independence#records/1329

datadrivenjournalism.net/featured_projects/uk_tech_landscape_where_do_they_meetup

We made a map on Google Maps: https://drive.google.com/open?id=1qlVBH_C3O7Q032EvBdoOHMuZ20o&usp=sharing

And here are the basic instructions for creating maps in Google Maps and in R (we didn’t have time to cover R)

I. Getting Started with “My Maps” in Google:

1. You need to have a google/gmail account

2. You can manually type ‘my maps’ into Safari, Chrome or any other web browser, or use this URL, which will prompt you to log in: www.google.com/maps/d/

3. “Create New Map”

4. Name your map, and then begin by manually entering spatial data (latitude/longitude, a post code, a place name), you can draw (add a point) on the map and then name that, or else you can import data from an excel, csv, or tab-delineated file

5. I recommend clicking on the “learn more” buttons anytime they are available

6. You can tailor your map points, you can tailor your map to different base types, and you can add polygons (boundary markers) to connect specific points to highlight spatial connections

7. You can save your map, you can make it public and share it with selected people or make it totally open, and you can create images of various types.

II. Getting Started with R:

R is a statistics package, but it has become more powerful than just that. It now has the ability to help you create customized maps of all types (along with countless other visualizations and images). I am just getting started with learning about R for mapping, but I can share what I do know.

1. First you need to download and install R (the latest version as of June 10 was version 3.3.0.

www.r-project.org/

You can download it from any one of the multiple “mirror sites” (a network of servers which host R). Choose the one closest to you. Follow the install prompts.

By the way: R Studio is also R, but it is sometimes a bit more user-friendly because it makes use of a more Windows/Office/OS-like user interface: www.rstudio.com/

2. Launch R or RStudio

3. You must install some “software” packages from the R package installer. These packages are little packets of data for mapping. You want to make sure that “maps” and “mapdata” are installed. You can then check for their presence in the R library:

library(maps)

library(mapdata)

4. This will produce a default map of the world

map()

You can add axes and scale:

map.axes()

map.scale()

5. In R, remember the X axis is longitude and the Y axis is latitude

6. Here are some coordinates. See what type of map you get. See if you understand what the numbers are telling you.

map(xlim=c(140, 160), ylim=c(-20,10))

map(xlim=c(80, 110), ylim=c(20,35))

7. The map library has two types of maps: a default map “map” and a more high resolution map “worldHires”

You can compare: map(xlim=c(80, 110), ylim=c(20,35))

with

map(“worldHires”, xlim=c(80, 110), ylim=c(20,35))

Then, you can add your axes and scale again

8. You can import your own coordinates and place name labels, but you need to save the file as .txt or .csv tab or comma-delimited and quoted fields, and NOT as an excel file.

9. I have loaded this file: Languages_MapR.txt, which has the lat/long for 14 Tibeto-Burman languages of Nepal, Tibet, China and India

View(Languages_MapR)

This gives me a spread-sheet type layout. Now I want to plot these language names accurately on the map

Here are the languages and their coordinates plotted on a scatter plot of lat X long: plot(Languages_MapR$longitude, Languages_MapR$latitude)

Here is how the map looks:

map(xlim=c(80, 110), ylim=c(20,35)) #this lets you zoom in to the region

points(Languages_MapR$longitude, Languages_MapR$latitude) #here are the labels plotted

text(Languages_MapR$longitude, Languages_MapR$latitude, labels=Languages_MapR$name) #this lets me add language names as labels

There are some other tricks on the following web pages that allow for color and shading

Here are some tutorial sites that I’ve found useful. There are many others.

www.mpi.nl/departments/former-independent-research-groups/evolutionary-processes/tools/mapping-with-r

rpubs.com/nickbearman/r-google-map-making

You can use R and Google Maps together, too, but I am not as familiar with this:

www.bnosac.be/index.php/blog/41-visualisation-with-r-and-google-maps

]]>
The Wide, Wide World Digital Edition, an SIUE DH Project http://siue2016.thatcamp.org/2016/06/11/the-wide-wide-world-digital-edition-an-siue-dh-project/ Sat, 11 Jun 2016 15:11:43 +0000 http://siue2016.thatcamp.org/?p=333

Lead by Dr. Jessica DeSpain, The Wide Wide World Project, featuring students Ben Ostermeier, Elizabeth Korinke, and Gabby Borders

The Wide, Wide World Digital Edition is a long-running project devoted to cataloging the 174 editions of a nineteenth century bestselling novel: The Wide, Wide World. Students will discuss their involvement with the project, what they have learned and gained, and what goals they have.

This session must be scheduled on Sunday.

]]>
Talk Session: DH Applications for Indigenous Cultural Knowledge via Place Based Education http://siue2016.thatcamp.org/2016/06/10/talk-session-dh-applications-for-indigenous-cultural-knowledge-via-place-based-education/ http://siue2016.thatcamp.org/2016/06/10/talk-session-dh-applications-for-indigenous-cultural-knowledge-via-place-based-education/#comments Fri, 10 Jun 2016 17:00:48 +0000 http://siue2016.thatcamp.org/?p=327

To get a few more proposals in the hopper, I am willing to lead a Talk Session on DH Applications for Indigenous Cultural Knowledge &via Place Based Education. I am labeling this as a Talk Session in the best form of collaboration–not presentation. For participants interested in place-based teaching and undergraduate (grad?) research–invariably connected in one form or another with the indigeneity of place/history/culture–this would be a sharing of ideas and ways that our classes can incorporate Digital Humanities Applications of Indigenous Cultural Knowledge via Place Based Education.

]]>
http://siue2016.thatcamp.org/2016/06/10/talk-session-dh-applications-for-indigenous-cultural-knowledge-via-place-based-education/feed/ 2
A History Grad Student’s Approach to Digital History http://siue2016.thatcamp.org/2016/06/09/a-history-grad-students-approach-to-digital-history/ Thu, 09 Jun 2016 18:39:22 +0000 http://siue2016.thatcamp.org/?p=305

Sharing project ideas with a group is a good way to collaborate and get fresh perspective. A few history grad students will share their digital theses projects and discuss ideas for future digital projects, the problems associated with creating a digital thesis, and look for feedback or ideas for their current projects.

One issue with creating a digital thesis is the lack of precedence. Here at SIUe, there have been few examples of master’s students creating and defending digital projects. Without that precedence, professors and students seem unsure of steps to take or defense strategies. New guidelines published by the AHA and universities like George Mason University provide an idea but they have yet to be tested at SIUe.

This session will bring researchers together to brainstorm. Talking about current digital projects will make others to think about their research in new ways. Learning about platforms for presenting research could encourage more digital work and build precedence for future work.

]]>
Session Proposal: Come learn more about SIUE’s IRIS Center! http://siue2016.thatcamp.org/2016/06/08/session-proposal-come-learn-more-about-siues-iris-center/ Wed, 08 Jun 2016 13:16:50 +0000 http://siue2016.thatcamp.org/?p=294

The Interdisciplinary Research and Informatics Scholarship (IRIS) Center (siueiris.com/) is a facility designed to support individual and collaborative scholarship at faculty and student levels that applies digital content as a primary methodology. IRIS facilitates cross-disciplinary and collaborative projects that involve applications, enhancements, or re-conceptualizations of technology in the humanities and social sciences.

The IRIS Center is home to a number of exciting faculty-student research projects, and IRIS-affiliated faculty have even launched a brand new interdisciplinary minor in digital humanities and social sciences.

The co-directors of the IRIS Center (Jessica DeSpain and Kristine Hildebrandt) would like to offer a tour of the Center, including some illustrations of current and past projects, conversations with IRIS faculty and student researchers, and a discussion of the minor.

We are planning two tours: one on Saturday June 11 @ 1.45pm and one on Sunday June 12 @ 10.10am. We will meet in the MUC Hickory-Hackberry Room and walk together to Peck Hall, where the IRIS Center is housed.

]]>
Betty Friedan’s Peoria http://siue2016.thatcamp.org/2016/05/26/betty-friedans-peoria/ Thu, 26 May 2016 03:44:50 +0000 http://siue2016.thatcamp.org/?p=249

I’ll be teaching an introduction to Digital Humanities at Bradley University in the fall. Bradley hosts a tribute site to Betty Friedan (a Peoria native) that I would like to see the class improve and create content for in a series of engaged learning projects. I would like to share with the participants at THATcamp some preliminary ideas that I have for the class and am eager to hear from participants any suggestions they might have based on their own experiences.

]]>
Talk/Play Session-Digital East St. Louis http://siue2016.thatcamp.org/2016/05/20/talkplay-session-digital-east-st-louis/ Fri, 20 May 2016 16:03:43 +0000 http://siue2016.thatcamp.org/?p=243

Session Organizers: Sudhamadhuri Arvapally, Jessica DeSpain, Matt Johnson, Sharon Locke, & Mallory Maves

This presentation will share work underway with Digital East St. Louis, a project funded by a National Science Foundation Innovative Technology Experiences for Students and Teachers grant. Housed at Southern Illinois University Edwardsville, the project is a collaboration between the Science Technology and Math Center, the Interdisciplinary Research and Scholarship Center (SIUE’s digital humanities Center), and the East St. Louis Community. In addition to sharing information about the project, we’ll also give session attendees the chance to interact with and comment upon student work.

Faculty in English and History who specialize in the digital humanities work alongside middle school teachers in the East St. Louis school district to develop a comprehensive three-year summer and after-school program for a group of middle school students. The research component of Digital East St. Louis is assessing how a digital humanities, place-based approach inspires student interest in the computer sciences. Over the three-year program, which launched in the summer of 2015, students will build a comprehensive database and a content-rich digital map showcasing their research into the history and culture of the city and its inhabitants.
One of the project’s primary goals is to encourage students to think across disciplines about ecology, geography, the lived environment, history, literature, and culture. Students will use skills central to information technology and information literacy to draw linkages between these topics, which will expand their critical thinking abilities and encourage them to see technology as a tool for exploring and visualizing broader questions. The project plans to train students in photography as they learn about East St. Louis architecture, learn about video production as they conduct oral history interviews with East St. Louis residents, and develop skills in research and metadata as they develop their own research interests for the project. This presentation will highlight the projects’ progress and discuss how to develop successful collaborations between the fields of STEM and the digital humanities in informal K-12 learning environments.

]]>
Talk Session Proposal: Our responsibilities, as educators, for “protecting” our students in the new media environment. http://siue2016.thatcamp.org/2016/04/05/talk-session-proposal-our-responsibilities-as-educators-for-protecting-our-students-in-the-new-media-environment/ Tue, 05 Apr 2016 23:14:16 +0000 http://siue2016.thatcamp.org/?p=226

To what extent do we have responsibilities for educating our students about privacy? For avoiding assignments that expose them to privacy compromises? For converting them to privacy advocates?

etc.

]]>