SRTM数据中国部分终于可以下载了,盼望了几年啊。精度比GTOPO30的高多了。
ftp://edcsgs9.cr.usgs.gov/pub/data/srtm
Eurasia目录下是亚欧大陆的数据,是SRTM-3,3arc精度,大概90米。
在OZI的DEM数据格式中选择GLOBE(ARCVIEW)格式就可以打开;用MicroDEM可以对多种DEM数据进行处理。
SRTM数据中国部分终于可以下载了,盼望了几年啊。精度比GTOPO30的高多了。
ftp://edcsgs9.cr.usgs.gov/pub/data/srtm
Eurasia目录下是亚欧大陆的数据,是SRTM-3,3arc精度,大概90米。
在OZI的DEM数据格式中选择GLOBE(ARCVIEW)格式就可以打开;用MicroDEM可以对多种DEM数据进行处理。
Jacksum is a free and platform independent utility for computing and verifying checksums, CRCs and message digests as well as timestamps of files.
Jacksum is entirely written in Java.
It supports most common checksum algorithms (Adler32, BSD sum, POSIX cksum, CRC-16, CRC-32, MD2, MD4, MD5, RIPEMD-128, RIPEMD-160, SHA-1, SHA-256, SHA-384, SHA-512, Unix System V sum, sum8, sum16, sum24, sum32, Whirlpool and xor8)
今来在blog中比较关注的一个热点是社会性软件,似乎现在中文blog群体中比较活跃的一些人是做教育的,因此对这方面的探讨比较多。
对于社会学方面的东西我不大懂,对社会性软件的概念也是一知半解,不过有个软件是很令我感兴趣的:SubEthaEdit。这个软件提供了通过网络多人共同进行文本编辑的功能,从screenshot上看,有点象IM聊天的多个参与者,共同对文件进行修改,通过不同颜色可以区别出不同人改动的部分。
软件的说明中提及了此软件可以用于pair programming,我想如果这样的软件真的能够达到实用化的话,基于网络的远程PP也是有可能的。即使不是远程PP,对于工作小组内部的商讨事情也会带来很大的方便。
可惜软件是用于Mac OS X的,没有办法试用。
交流真是工作中非常重要的一部分,想想每天多少人在天空飞来飞去,就是为了参加半天的会议,能有一次见面交流的机会。电话、网络等等各种先进科技,目前都还是未能让人们能自如的交流,提供真切的体验。这是一个极具潜力的领域。
在玩户外的人中,GPS的拥有量开始增加,什么型号的GPS适合户外使用?我在买GPS之前看过不少资料,可以参考一下。
GPS information是一个很值得看的站点,几大GPS厂家的设备信息、GPS相关软件、使用心得等等资料非常齐全。
该网站里面一篇文章Important features for a hiking GPS介绍了什么GPS适合于hiking使用。
摘录部分出来:
Below are my “essential hiking feature list” of GPS receiver features.
(I omitted features that are present in ALL receivers.)
12 channel parallel receiver system: Needed for best reception in difficult terrain and tree cover.
WaterProofness: Unit should be rated submersible to protect it from getting wet.
Long battery life: Keeps you from having to carry so many batteries.
Built in Maps: Not absolutely essential, but big help in orientation and estimating distance to nearest roads.
Route capability: Twenty Route capability is pretty standard. Make sure you get one with at least 20 routes.
Waypoints: 500+ user entered waypoints are pretty standard. Make sure you get one of these.
Multiple Datum capability is pretty standard: Make sure all the datums you will want to use are included in the GPS you select.
Fit nicely in your pocket and lightweight: This is a very personal thing, but you should consider it when you are thinking about hauling a unit around in the wilderness.
Bearing to next waypoint: Almost universal, but essential to hiking use.
Screen Size and your ability to read it are important especially if you have problems with viewing fine detail.
Not ABSOLUTELY essential features, but nice to have.
“Map” screen (as opposed to just a numerical lon/lat position fix): Makes it much easier to see where you are relative to reference waypoints.
Rotatable screen: Garmin makes a couple of units capable of rotating the screen vertical (handheld use) or horizontal (car dash use). These are not the handiest for pocket use, but lots of people like this compromise for joint hiking/car use.
UTM readout may be a consideration for some. This feature is available on a limited selection of consumer GPS receivers.
Topo Maps uploaded into your GPS: The Garmin USA Topo CD maps contain contour lines and small stream data very helpful in navigating in off-road territory. Magellan has a new TOPO map offering for the M330 available late Summer 2001.
For use under heavy tree cover or difficult (multipath) terrain conditions, an external amplified antenna will generally be helpful.
A minimum of 8 megs of map memory is recommended on a mapping GPS though you can “get by” with 1.4 megs or so.
MySQL的数据表访问锁定:读操作、写操作分别要申请读锁和写锁,读锁可以并发,写锁是唯一的。通过配置或者一些命令可以改变读、写的优先级。在MySQL手册中关于性能部分有说明。
普通的表类型,如MyISAM表是采用table级锁定;InnoDB和BDB是支持transaction的表类型,它们采用更小粒度的锁定,BDB是page级锁定,InnoDB是row级锁定。