The Memphis Grizzlies!
March 4, 2010
A recent history of the Memphis Grizzlies, timeline style, courtesy Michael Erskine, digital content editor at The Commercial Appeal.
March 4, 2010 A recent history of the Memphis Grizzlies, timeline style, courtesy Michael Erskine, digital content editor at The Commercial Appeal.
February 3, 2010 Deb Wenger, of the University of Mississippi School of Journalism, came up to the Commercial Appeal a few weeks ago to interview some of the folks involved in our True Crime project.
Her case study will be out on thecrimereport.org in the next week or so, and will include my how-to guide to working with crime data. In the meantime, enjoy this accompanying video she produced.
January 28, 2010 The following is the basis of a tutorial I’ll be giving later today of a University of Memphis journalism class on various ways to create Google Maps.
1) Linking to or embedding Google MyMaps is the most simple way to begin.
Log into your Google account, head over to maps.google.com, and click “MyMaps” right under the Google logo. Add a new one and give it a name. It can stay unlisted if you want, so it won’t be publicly searchable, but you’ll still be able to link to it and embed the code.
Draw some shapes and drop some markers. Save your map. Above the map, far to the right, click the “Link” button. Grab the code from the top text box and add it to your story. Note: This link will capture your current zoom level and map type.
Example:
Joe Hayden is a professor at the University of Memphis Department of Journalism (map this).
But that forces readers to leave your site. A little more advanced way to do things is to embed the code from your MyMap into your story or blog post, such as this one. Go back to your MyMap, click the “Link” button again, but this time copy the code from the second text box that says “embed.”
Paste that code into your content management system or web page. Example:
View University of Memphis in a larger map
You can further customize the size and shape of your embedded map by clicking the link that says
“Customize and preview embedded map.”
2) Exporting the KML from your MyMap
Click the “View in Google Earth” link above your MyMap. This will let your download the KML file where your data is stored. You then want to overlay that file on a custom Google Map that you’ve created using the GMaps API. You’ll also need an API key, a code specific to your web site, which is free and easy to obtain here.
The code for the first example is available here. It’s in text format, so you’ll want to change the file extension from .txt to .html if you plan on working off that file. For working on plaintext web files, I recommend Notepad++, and for file management and FTP, FileZilla.
Upload that KML to your server and tell your html file where the kml overlay is located, at this line:
var boundaries = new GGeoXml(“http://grantmeaccess.com/gmaps/uofm.kml”);
3) Show multiple overlays on your custom map
Repeat the above steps to create another MyMap, export that KML file, upload it and just duplicate the overlay code.
Your original overlay code:
var boundaries = new GGeoXml(“http://grantmeaccess.com/gmaps/uofm.kml”);
map.addOverlay(boundaries);
Your new overlay code, with two overlays:
var boundaries = new GGeoXml(“http://grantmeaccess.com/gmaps/uofm.kml”);
map.addOverlay(boundaries);
var boundaries2 = new GGeoXml(“http://grantmeaccess.com/gmaps/uofm2.kml”);
map.addOverlay(boundaries2);
But say you want your user to be able to turn each of those layers on and off individually. Use this code.
That’ll give you a map like this.
If your content management system won’t let use that code, use an iframe (documentation here) to point the CMS to your html file.
Good luck!
January 20, 2010 A little bit of hilarious from Stephen Colbert, on mountaintop removal. Found the clip on the always awesome Outside Blog.
| Coal Comfort – Margaret Palmer | |
|
|
January 8, 2010
So I’ve decided to participate in Project 365, the effort to take and upload one photo a day for 365 days. I’ve always wanted to keep a journal, but frankly have been too lazy, so I’m kind of excited about the project.
In order to make sure I actually follow through, I’m going to be shooting, editing and uploading with my iPhone, since it’s the camera I always have with me. I’m using the Best Camera application to edit my photos and the Flickr app to upload them.
I’ll be displaying my photos in my Project 365 gallery, which is basically a feed from my Flickr Photostream. I’m using the Flickr + Highslide plugin to create the gallery.