<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>maps Archives - ClickedyClick</title>
	<atom:link href="https://gergely.imreh.net/blog/tag/maps/feed/" rel="self" type="application/rss+xml" />
	<link>https://gergely.imreh.net/blog/tag/maps/</link>
	<description>Life in real, complex and digital.</description>
	<lastBuildDate>Sun, 08 Nov 2015 07:42:34 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Taiwan WWII Map Overlays</title>
		<link>https://gergely.imreh.net/blog/2015/11/taiwan-wwii-map-overlays/</link>
					<comments>https://gergely.imreh.net/blog/2015/11/taiwan-wwii-map-overlays/#comments</comments>
		
		<dc:creator><![CDATA[Gergely Imreh]]></dc:creator>
		<pubDate>Mon, 02 Nov 2015 13:47:43 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Taiwan]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[WWII]]></category>
		<guid isPermaLink="false">https://gergely.imreh.net/blog/?p=2102</guid>

					<description><![CDATA[<p>A while ago I came across the Formosa (Taiwan) City Plans, U.S. Army Map Service, 1944-1945 collection, in the Perry-Castañeda Library Map Collection of the University of Texas in Austin. I&#8217;m a sucker for maps, enjoy learning about history a lot, and I have a lot of interest in my current home, Taiwan &#8211; so you can call this a [&#8230;]</p>
<p>The post <a href="https://gergely.imreh.net/blog/2015/11/taiwan-wwii-map-overlays/">Taiwan WWII Map Overlays</a> appeared first on <a href="https://gergely.imreh.net/blog">ClickedyClick</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>A while ago I came across the <a href="https://www.lib.utexas.edu/maps/ams/formosa_city_plans/">Formosa (Taiwan) City Plans, U.S. Army Map Service, 1944-1945 collection</a>, in the <a href="https://www.lib.utexas.edu/maps/">Perry-Castañeda Library Map Collection</a> of the University of Texas in Austin. I&#8217;m a sucker for maps, enjoy learning about history a lot, and I have a lot of interest in my current home, Taiwan &#8211; so you can call this a magic mix of cool stuff.</p>
<p>There are 26 maps in the collection, made by the US Army by flying over different parts of the island, and mostly I guess stitching together aerial photographs. The maps themselves were not that easy check in an image viewer, since there&#8217;s no context, zoom is clumsy, and have no idea where about half the places should be located. Instead, I thought it would be great to have them as an overlay on top of current maps and satellite imagery on Google Maps.</p>
<p>The result is <a href="https://imrehg.github.io/taiwanmap/">Taiwan City Maps overlays</a>, which does exactly that. <em>Feel free to click the link and explore right now!</em> In the rest of this post, I try to first show how that page was made, and also some history lessons I gained by making it.</p>
<p><span id="more-2102"></span></p>
<h2>How it was made</h2>
<p>The <a href="https://developers.google.com/maps/documentation/javascript/examples/groundoverlay-simple">Google Maps Ground Overlay API</a> does exactly what I needed, so can&#8217;t claim much (almost any) innovation in the page, though I stumbled on it after a few other &#8220;Overlays&#8221;, as Google Maps has a couple, all working slightly differently.</p>
<p>Ground Overlay basically takes the following parameters:</p>
<ul>
<li>the map&#8217;s center,</li>
<li>zoom level,</li>
<li>an image,</li>
<li>the image&#8217;s N/E/W/S bounds in geographical coordinates.</li>
<li>whether to show satellite or maps view underneath</li>
</ul>
<p>Even cooler, the opacity of the image can be adjusted, so the overlay and the base layer can be viewed together much easier!</p>
<p>In that list above, the trickiest part is of course figuring out the boundaries of the image &#8211; basically the way to overlay them &#8211; for multiple reasons. First, all the maps have borders with information, titles, legend, and so on. Here below is the Taipei city plan from 1944. I can&#8217;t really tell where the corner of the image should be geographically, if there&#8217;s nothing to compare to.</p>
<figure id="attachment_2109" aria-describedby="caption-attachment-2109" style="width: 600px" class="wp-caption aligncenter"><a href="https://imrehg.github.io/taiwanmap/maps/txu-oclc-6565483.jpg"><img fetchpriority="high" decoding="async" class="wp-image-2109 size-full" src="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/Taipei_Small-min.jpg" alt="Taipei / Taihoku city plan" width="600" height="490" srcset="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/Taipei_Small-min.jpg 600w, https://gergely.imreh.net/blog/wp-content/uploads/2015/11/Taipei_Small-min-500x408.jpg 500w" sizes="(max-width: 600px) 100vw, 600px" /></a><figcaption id="caption-attachment-2109" class="wp-caption-text">Taipei / Taihoku city plan</figcaption></figure>
<p>Then there&#8217;s also the problem of things have changed in the last ~70 years, so a lot of things are different on the maps, if I want to match them up. Lastly, the maps are not perfectly accurate either, they are stitched from multiple photographs of unknown quality.</p>
<p>Been trying to match the maps by hand for a while, and codings some tools to make that process easier &#8211; but it didn&#8217;t really get easier. I needed to get to get around all these issues, and have a reasonable, objectively good fit. Objectivity is a key, and math helps with that. What I ended up with doing a linear fit of geographical and image coordinates.</p>
<ul>
<li>look for landmarks that are reasonably the same back then and now</li>
<li>note their geographical coordinates, and their pixel coordinates on the image</li>
<li>note the image size</li>
<li>finally: run a linear fit that gives back the geographical coordinates of the image edges that would best match the landmark data in both sources</li>
</ul>
<p>In really ugly Python it would be something like this:</p>
<pre class="lang:python">import numpy as np

# # For example the contents of "taoyuanfit.csv":
# # Landmark data: image vertical/horizontal (px), latitude/longitude
# 1677,2861,24.991962,121.322634
# 1597,524,24.992282,121.304856
# 2385,1348,24.986873,121.311122
# 764,1342,24.998116,121.311411
datafile = "taoyuanfit.csv"
points = np.loadtxt(datafile, delimiter=",", comments="#")
imgwidth, imgheight = 3975, 3209

# Points on the image, scaled to range 0 to 1
px, py = points[:, 1]/imgwidth, (imgheight-points[:, 0])/imgheight
# Points on the map
gx, gy = points[:, 3], points[:, 2]
# Do the fitting
lx, ly = np.polyfit(px, gx, 1), np.polyfit(py, gy, 1)

# Fitting parameters give map boundaries, results in this case
west = lx[1]          # 121.300983
east = lx[1] + lx[0]  # 121.331141
north = ly[1]+ly[0]   #  25.003429
south = ly[1]         #  24.981204
</pre>
<p>This is now pretty objective, and then quality of the overlay depends on the quality of the landmarks I find, and the maps that they are on.</p>
<p>The best landmarks I could turn up were notable roundabouts like below&#8230;</p>
<figure id="attachment_2103" aria-describedby="caption-attachment-2103" style="width: 600px" class="wp-caption aligncenter"><a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Tainan#lat=22.992571&amp;lng=120.205386&amp;z=17"><img decoding="async" class="wp-image-2103 size-full" src="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/map_roundabout.gif" alt="Matching roundabouts (Tainan)" width="600" height="400" /></a><figcaption id="caption-attachment-2103" class="wp-caption-text">Matching roundabouts (Tainan, click to go to this section on the map)</figcaption></figure>
<p>&#8230; and recognizable streets and intersections, like below&#8230;</p>
<figure id="attachment_2104" aria-describedby="caption-attachment-2104" style="width: 600px" class="wp-caption aligncenter"><a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taichung#lat=24.140336&amp;lng=120.680156&amp;z=17"><img decoding="async" class="wp-image-2104 size-full" src="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/map_streets.gif" alt="Matching recognizable streets (Taichung)" width="600" height="400" /></a><figcaption id="caption-attachment-2104" class="wp-caption-text">Matching recognizable streets (Taichung, click to go to this section on the map)</figcaption></figure>
<p>&#8230; but not too small and not too large streets. Large streets have fewer recognizable locations (unless some notable mid-sized street is intersecting with it), and small streets are usually not placed too carefully on the map, so can&#8217;t really trust their positions.</p>
<p>What I couldn&#8217;t trust, though: rivers (they changed a lot), bridges (usually can&#8217;t tell if they are the same bridge in both era, or a new one built close to the no longer there old one, as it is a common practice), coastlines, lakes, large structures.</p>
<p>The minimal number of landmarks needed for a fit (ideally) is just two, and surprisingly, there were a couple maps where I could get along with about three. In most cases, though, I needed at least 4-6 landmarks, and there were some I needed to discard for overall better quality of fit. Some maps show pretty good accuracy, while others (such as e.g. <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Kaohsiung">Kaohsiung</a>) are quite poor &#8211; compared to today&#8217;s satellite pictures, of course. It&#8217;s all enjoyable, though.</p>
<p>Then added a few more functions to the page, such as changing the opacity, being able to link to the exact location and zoom level I&#8217;m looking at, and some page-load animation (the maps are in the range of 4-10MB, not that quick to load).</p>
<p>The source code for the site is <a href="https://github.com/imrehg/taiwanmap">on Github</a>, and pull requests are accepted, naturally.</p>
<h2>History lessons learned</h2>
<p>I was very interested to note the things that have changed, and things that haven&#8217;t in the decades passed.</p>
<h3>Things that mostly stayed the same</h3>
<p><strong>Schools</strong> are usually at the same location, even stayed the same type (e.g. girls&#8217; high school staying that <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Changhua#lat=24.081851&amp;lng=120.544232&amp;z=17">in Changhua</a>).</p>
<p><strong>Airports</strong> are usually at the same location (duh!), though usually greatly expanded, while the old runways can be matched to the new ones (<a href="http://localhost:8000/taiwanmap.html?location=Hsinchu#lat=24.819385&amp;lng=120.946305&amp;z=15">like in Hsinchu</a>).</p>
<p><strong>Train stations</strong>, of course, although tracks might change, or entire stations disappear (like <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Beigang#lat=23.567516&amp;lng=120.296347&amp;z=17">in Beigang</a> or <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Hualien#lat=23.973977&amp;lng=121.611590&amp;z=17">in Hualien</a>).</p>
<p><strong>Military installations</strong>, which surprised me, can stay the same, looks like the KMT troops just took over the Japanese posts and continued to use them. Some turned into schools, or could disappear too.</p>
<p>Many <strong>roundabouts</strong>, <strong>outlines of city blocks</strong> (like the <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taipei#lat=25.035710&amp;lng=121.520802&amp;z=16">CKS Memorial Hall now</a>, or <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Yilan#lat=24.757393&amp;lng=121.753820&amp;z=16">Yilan&#8217;s city outline</a>), <strong>mountains</strong>, also stayed mostly the same.</p>
<h3>Things that changed a lot</h3>
<p><strong>City areas</strong> changed enormously (duh!), just look at the capital, <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taipei">Taipei</a>, the west side stayed mostly the same but built in about twice/three times as big area on the east. Most other cities grown just like that, as it&#8217;s very clear for example <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taitung">for Taitung</a>. It&#8217;s no wonder, 5.8 million people on the island in 1940, while above 23 million by now (<a href="https://en.wikipedia.org/wiki/Demographics_of_Taiwan#Population_census">according to Wikipedia</a>). This also brings the changes of a lot of <strong>streets and roads</strong>.</p>
<p>Water is definitely very changeable. <strong>Rivers</strong> got diverted a lot, most notably on the <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taipei#lat=25.071025&amp;lng=121.566421&amp;z=14">east side of Taipei </a>(near Neihu and Songshan districts) the Keelung river was straightened up, but the roads can still mirror the old path. Other rivers (or channels?) got covered up, and now only live on as roads &#8211; though I guess they might still flow under our feet (just like <a href="https://en.wikipedia.org/wiki/Fleet_Street">Fleet Street</a>)? Some more dramatic change is an entire <strong>missing island</strong> <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Danshui#lat=25.165905&amp;lng=121.438357&amp;z=16">in Danshui</a>, I wonder what happened to it? <strong>Lakes</strong> change too, mostly I guess due to development around them (<a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Zuoying#lat=22.684229&amp;lng=120.296463&amp;z=15">like in Zuoying</a>). The <strong>sea shore</strong> is different for the many cities, as probably they were developed and also the shallows were naturally filled by the rivers (<a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Hsinchu#lat=24.816249&amp;lng=120.923389&amp;z=15">like in Hsinchu</a> and <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Tainan#lat=22.998689&amp;lng=120.199147&amp;z=14">in Tainan</a>). Harbors don&#8217;t stay the same either (<a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Penghu">like in Penghu</a>).</p>
<p>Some landmarks such as <strong>shrines</strong> have changed too. The most notable I could find so far is in Taipei / Yuanshan, where the current <a href="https://en.wikipedia.org/wiki/Grand_Hotel_(Taipei)">Grand Hotel / 圓山大飯店</a> replaced a shrine in 1952 (yellow rooftop on the left below), while the <a href="https://en.wikipedia.org/wiki/National_Revolutionary_Martyrs%27_Shrine">Taipei Martyrs&#8217; Shrine</a> seems to be built on the site of another previous shrine in 1969 (yellow rooftop and cross-shaped grounds on the right below). On the map there&#8217;s another temple-complex looking structure in between them, that&#8217;s now the <a href="https://www.americanclub.org.tw/">Taipei American Club</a> and the <a href="https://en.wikipedia.org/wiki/International_Community_Radio_Taipei">International Community Radio Taipei (ICRT)</a>.</p>
<figure id="attachment_2140" aria-describedby="caption-attachment-2140" style="width: 600px" class="wp-caption aligncenter"><a href="http://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taipei#lat=25.079136&amp;lng=121.528545&amp;z=17"><img loading="lazy" decoding="async" class="wp-image-2140 size-full" src="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/map_shrine.gif" alt="Map Shrines" width="600" height="400" /></a><figcaption id="caption-attachment-2140" class="wp-caption-text">Grand Hotel replacing a shrine (yellow rooftop on the left), while shrine becomes a Taipei Martyrs&#8217; Shrine (yellow roof and cross-shaped ground on the right). In the centre, now the Taipei American Club and the ICRT radio station (click to go to this section on the map)</figcaption></figure>
<p><strong>Race courses</strong> disappeared too &#8211; together with the cavalry, I guess (like <a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Tainan#lat=22.992773&amp;lng=120.232814&amp;z=16">in Tainan</a>).</p>
<p>I&#8217;m sure there are a bunch of other things too, it will take some time to discover and understand things&#8230;</p>
<h3>Other notes</h3>
<p>The <strong>legends</strong> and information on the maps was pretty interesting. For example here&#8217;s the coverage map for Taipei / Taihoku, showing what aerial maps they stitched together, and when were the flights that took the photos:</p>
<figure id="attachment_2115" aria-describedby="caption-attachment-2115" style="width: 464px" class="wp-caption aligncenter"><a href="https://imrehg.github.io/taiwanmap/taiwanmap.html?location=Taipei#lat=25.018566&amp;lng=121.560241&amp;z=16"><img loading="lazy" decoding="async" class="wp-image-2115 size-full" src="https://gergely.imreh.net/blog/wp-content/uploads/2015/11/Taipei_Coverage_1944-min.jpg" alt="Taipei aerial photo coverage" width="464" height="469" /></a><figcaption id="caption-attachment-2115" class="wp-caption-text">Taipei aerial photo coverage</figcaption></figure>
<p>The Internet also taught me a few things, such as <a href="https://www.reddit.com/r/taiwan/comments/3o2vwh/taiwanese_city_maps_in_wwii_and_now/cvu2wml">this very insightful comment on Reddit</a> that traced back the Chinese / Japanese <strong>city names</strong> of these maps.</p>
<p>I was also amazed by how detailed information the Americans had about the <strong>functions of the buildings</strong> &#8211; down to the type of factories, the type schools the buildings were. I would not be surprised if the maps were supplemented by some real intelligence from the ground. Especially likely as the big cities had so much more such details than the smaller locations (where there might not be more than a few likely military installations noted). I wonder if there&#8217;s any good source to learn about this &#8211; about American intelligence behind enemy lines in the Pacific theatre of WWII.</p>
<h2>To the Future</h2>
<p>Now that everything kinda works, I think I&#8217;ll spend more time looking at the maps instead of working with them, try to learn more.</p>
<p>Hosting this project on Github is definitely pretty easy and convenient, though I start to see that their speed is not necessarily very good for big assets like the map images. Could add Cloudfront very easily to speed things up, just I don&#8217;t necessarily want to pay for that extra speed just yet. :P</p>
<p>To be able to show the loading animation I currently need to use jQuery to preload the image, then rely on the browser caching to <em>not</em> to download the image for the second time when the image is attached to the map object to create the overlay. It works pretty well&#8230; except in the Facebook Android app&#8217;s built in browser &#8211; that happily ignores caching and downloads the image twice (ouch). Would be awesome to figure out how can I get directly from the Google Map API when it finished downloading the image.</p>
<p>Might revisit a couple of the maps to see if I can improve the fit, though really just a couple of them, most are totally fine for their quality. Should also add the Japanese writing of the city names for more authenticity and discoverability.</p>
<p>And in the meantime, <a href="http://imrehg.github.io/taiwanmap/">keep checking the map</a>, and any comment or feedback is appreciated! A big thanks to the <a href="http://www.lib.utexas.edu/">University of Texas Libraries </a>and the <a href="http://www.lib.utexas.edu/maps/">Perry-Castañeda Library Map Collection</a> for the <a href="http://www.lib.utexas.edu/usage_statement.html">public domain maps</a>!</p>
<p>The post <a href="https://gergely.imreh.net/blog/2015/11/taiwan-wwii-map-overlays/">Taiwan WWII Map Overlays</a> appeared first on <a href="https://gergely.imreh.net/blog">ClickedyClick</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://gergely.imreh.net/blog/2015/11/taiwan-wwii-map-overlays/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>My IT travel pack</title>
		<link>https://gergely.imreh.net/blog/2014/04/my-it-travel-pack/</link>
					<comments>https://gergely.imreh.net/blog/2014/04/my-it-travel-pack/#comments</comments>
		
		<dc:creator><![CDATA[Gergely Imreh]]></dc:creator>
		<pubDate>Sun, 13 Apr 2014 13:21:39 +0000</pubDate>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[airport]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[travel]]></category>
		<guid isPermaLink="false">https://gergely.imreh.net/blog/?p=1739</guid>

					<description><![CDATA[<p>Taking stock of technology I used to make my recent trip to Kyoto more smooth. Also how lots of such help together can be overwhelming.</p>
<p>The post <a href="https://gergely.imreh.net/blog/2014/04/my-it-travel-pack/">My IT travel pack</a> appeared first on <a href="https://gergely.imreh.net/blog">ClickedyClick</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve just recently travelled from Taiwan to Japan on a short trip to check out the cherry blossoms of Kyoto. While it was fun, I did realize that there are a lot of technological details I&#8217;m keeping track of, that take up significant mental bandwidth. Technology is helpful even if it takes effort to keep it running. This is a writeup of a non-exhaustive, arbitrarily ordered list of tech I used on the trip, and the way I used them.</p>
<h2>Internet connectivity</h2>
<p>One of the first concern is how do I get online on the go? There seem to be a bunch of companies providing mobile hotspot rental. The one I wanted to use originally is in Taiwan, and tried to arrange it too late (needs ~5 days in advance). Instead I found another company online called <a title="Japan Wireless" href="http://japan-wireless.com/">Japan Wireless</a>. They can send a wireless hotspot or pre-paid 3G card to a hotel, or to an airport to be picked up. Since the hotspot I wanted to get was out of stock for the first half of the trip, I went with a 3G card and wanted to use an old Android phone to act like the hotspot.</p>
<figure id="attachment_1740" aria-describedby="caption-attachment-1740" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1740" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/3Gpack.jpg" alt="3G SIM card pack" width="500" height="333" /><figcaption id="caption-attachment-1740" class="wp-caption-text">3G SIM card pack</figcaption></figure>
<p>Picking up the card at Kansai Airport was very straightforward. My Android phone worked much less. Might be getting &#8220;too old&#8221;, sometimes it couldn&#8217;t start the wireless sharing at all, though when it worked it was good for a while. It is also worth enabling &#8220;network traffic monitoring&#8221; and appropriate warning levels. The pre-paid card had 1G traffic included. Definitely does not recommend running a Play Store update while connected, apps can easily take up 30-50Mb, and 50% of your traffic allowance is gone before you can say &#8220;Ice Cream Sandwich&#8221;&#8230;</p>
<p><span id="more-1739"></span></p>
<p>In the end the hotel had pretty good wifi, on the road the environment was more interesting than things online, and haven&#8217;t run into any emergency that needed online connection. I guess this kind of rental is good insurance, but can conceivably get by without it.</p>
<h2>Navigation</h2>
<p>One thing is going somewhere, and another is know where&#8217;s one going. A lot of plans were made in <a title="Google Map My Places" href="https://maps.google.com/maps/myplaces">Google Map My Places</a>. Restaurants to try, shrines to visit, shops to examine&#8230; Not wanting to rely on constant internet connection, and because My Places in Google Maps for Android is very much not user friendly, had to try another service.</p>
<p>Been using Maps With Me for a while that provides offline map access. The <a title="Maps With Me Pro on the Play Store" href="https://play.google.com/store/apps/details?id=com.mapswithme.maps.pro">Maps With Me Pro</a> version has KML import and fortunately My Places has KML export.</p>
<figure id="attachment_1741" aria-describedby="caption-attachment-1741" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1741" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/mapswithme.jpg" alt="MapsWithMe Pro" width="500" height="281" /><figcaption id="caption-attachment-1741" class="wp-caption-text">MapsWithMe Pro</figcaption></figure>
<p>This solved 90% of the issues. Had places with names and details, and path. The pin types don&#8217;t show up (in Maps With Me all the pins are the same), I guess I&#8217;ll have to check if they are not included in <a title="KML reference" href="https://developers.google.com/kml/documentation/kmlreference">KML</a>, or something else goes wrong along the way.</p>
<p>Maps With Me Pro is one of the handful Play Store purchases I made, and I think this one totally worth that NT$180 ($6?).</p>
<p>Being able to see the map is good, but it helps if the location is locked on quickly. GPS always takes a while on my phone, and to speed this up, I thought I just run GPS all the way&#8230; <a title="MyTracks homepage" href="http://www.google.com/mobile/mytracks/">MyTracks</a> worked for that pretty well, it recorded where we went, and helped to quickly see on Maps With Me as well where we are.</p>
<figure id="attachment_1742" aria-describedby="caption-attachment-1742" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1742" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/mytrack.jpg" alt="MyTrack" width="500" height="281" /><figcaption id="caption-attachment-1742" class="wp-caption-text">MyTrack</figcaption></figure>
<p>Of course it drains the battery, but being in Airplane Mode and only having the GPS on I could get about 10-11 hours out of the phone, which was okay for the day &#8211; provided that I haven&#8217;t browsed much on the portable hotspot. :)</p>
<h2>Photography</h2>
<p>Between the two of us on the trip we had 5 cameras (2 cell phones, a compact camera, a DSLR and a GoPro). Based on experience on other trips, it is pretty difficult to synchronize the clocks of all these cameras, so in the end I could have a real timeline.</p>
<figure id="attachment_1743" aria-describedby="caption-attachment-1743" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1743" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/timesetting.jpg" alt="Setting the time on various cameras" width="500" height="375" /><figcaption id="caption-attachment-1743" class="wp-caption-text">Setting the time on various cameras</figcaption></figure>
<p>The phone synchronized itself just by connecting to the Japanese cell network for a moment. GoPro was synchronized by the <a title="GoPro App on the Play Store" href="https://play.google.com/store/apps/details?id=com.gopro.smarty">GoPro app</a>. That leaves the other two cameras, that needed manual adjustments, so inevitably there were few seconds differences. It also doesn&#8217;t help that there&#8217;s 1h timezone difference between Japan and Taiwan, so had to set the time ahead and back on the plane, so that it will be correct in the local time zone.</p>
<p>It is still troublesome, and neither Facebook nor Google+ handled the time ordering completely correctly in the end when I was uploading the resulting pictures, selected from all devices. Google+ was a bit closer to be correct and could order in a second. Facebook sometimes was very much off and the ordering hung Chrome for a minute or so&#8230;</p>
<p>I guess manual processing would work, using a script (used Python for this before but not now) to turn timing information into filename information, then the ordering can be fixed easier and all the platforms handle that. In the same time, I&#8217;d love to see whether there&#8217;s a technical solution to synchronize time across cameras easier. I cannot be the only one who need that.</p>
<p>The phone camera had one more usage. HTC has pretty decent HDR (as point-and-shoot HDR pictures go), and could get a bit better scenes out of the very contrasting light occasionally. Though more often it was the &#8220;Overly Dramatic Photoshoot&#8221; effect. That&#8217;s fun too.</p>
<figure id="attachment_1744" aria-describedby="caption-attachment-1744" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1744" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/mobilehdr.jpg" alt="Mobile camera HDR" width="500" height="375" /><figcaption id="caption-attachment-1744" class="wp-caption-text">Mobile camera HDR</figcaption></figure>
<p>The cell phones were backed up over wifi during the trip, would want to figure out in the future how to back up the SD cards of the cameras as well, without a computer.</p>
<h2>Communication</h2>
<p>Only used a few times, but it does help to know a bit of Japanese. Tried to find any useful apps in the phrasebook category (that&#8217;s the lazy student&#8217;s solution). There were some good ones, but there was a surprising problem: I was looking for shopping related terms, and for every single app, shopping is a premium feature.</p>
<figure id="attachment_1745" aria-describedby="caption-attachment-1745" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1745" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/language.jpg" alt="Language apps" width="500" height="440" /><figcaption id="caption-attachment-1745" class="wp-caption-text">Language apps</figcaption></figure>
<p>Unlike Maps With Me, I couldn&#8217;t find any travel phrasebook that I would want to upgrade to pro. So that&#8217;s all, got along with some English and lots of gestures. For the future I will be looking for some proper Japanese learning app instead of the quick solution.</p>
<h2>Airport</h2>
<p>China Airlines offered online check-in and also a Mobile Boarding Pass. It&#8217;s a PDF, and I have saved in Evernote, where I have offline access to it. Supposed to be very handy, though at the very first time it was used by the security at the Taoyuan Airport it kinda failed already: the security guard couldn&#8217;t scan my QR Code at all. No amount of resizing nor brightness adjustment worked. Holding up the entire queue did make me sad a bit, fortunately the other scanners seemed to have worked.</p>
<figure id="attachment_1747" aria-describedby="caption-attachment-1747" style="width: 500px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-1747" src="https://gergely.imreh.net/blog/wp-content/uploads/2014/04/boardingpass.jpg" alt="Mobile boarding pass" width="500" height="363" /><figcaption id="caption-attachment-1747" class="wp-caption-text">Mobile boarding pass</figcaption></figure>
<p>The immigration section of the airport was pretty techy as well. For the last few times I&#8217;ve been using the <a title="e-gate immigration" href="https://www.immigration.gov.tw/egate/english.html">Taiwanese e-gate</a> immigration: scan the residency permit (or passport for the Taiwanese), step in a little booth, run a facial recognition, if works let you out, if not then do a fingerprint check and continue. For me it&#8217;s the fastest immigration ever: facial recognition just flashes on the screen and lets me through right away. Probably not that many Western guys in the databases so it&#8217;s easy to verify me.</p>
<h2>Next time</h2>
<p>Some of these trick I will like to keep for next time I travel, though I do feel sometimes that technology that supposed to make my life easier and more smooth, when combined with other tech can become overwhelming.</p>
<p>Would love to hear about useful travel tech you are using as well, any suggestions to me?</p>
<p>The post <a href="https://gergely.imreh.net/blog/2014/04/my-it-travel-pack/">My IT travel pack</a> appeared first on <a href="https://gergely.imreh.net/blog">ClickedyClick</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://gergely.imreh.net/blog/2014/04/my-it-travel-pack/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 15/55 objects using APC
Page Caching using Disk: Enhanced 
Lazy Loading (feed)

Served from: gergely.imreh.net @ 2026-09-22 18:06:07 by W3 Total Cache
-->