由买买提看人间百态

topics

全部话题 - 话题: map
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
i******e
发帖数: 171
1
I need map. For the time being, I have to use both
map and map.
I have thought map in C++ has the similiar way to be manipulated as
hash in Perl, where we can sort by key or by value.
f**********w
发帖数: 93
2
来自主题: Programming版 - how to initialize associate data in STL map
我现在在用STL的map实现以下功能,读入两列数,第一列是index,第二列是相应的数据
,但是index列有重复的,需要把相应的数据累加起来,我是这么做的
map mid;
for ( int i = 0; i < MaxIndex; i++) {
map[index] += val;
}
但是我要确定读入数据前,associate data(value)是正确的初始化为0.的,这个是
map自动实现的吗?还是说我要自己实现它,谢谢
g*********s
发帖数: 1782
3
来自主题: Programming版 - STL map变量的实际memory usage估算
比如声明这样一个变量
using namespace std;
map *nameMap = new(map);
... // 在nameMap里插入了1000个(string, int) pair
现在需要估算这时heap的size增加了多少?
估算如下:
本身sizeof(map<...,...>)是48个字节。
一个string s的size是 sizeof(string) + s.size(),假定字符串长度都是8,则是16。
一个int是4字节。
这样至少是48+1000*(4+16)=2048 bytes。
但是map是用rb_tree实现,加上开销是多少呢?看了一下source code,不太确定是不
是算对了。
每个node包含color, left, right, parent, key, value,其中(key, value)前面算过。
color 1 byte,三个指针,64位机器上,24字节,这样就是25byte。总的字节是:
48+1000*(4+16+1+24)=4548。
如果node是按8-byte
s****n
发帖数: 700
4
来自主题: Programming版 - 如何在c++里定义一个map of map
我现在有一个map定义如下
typedef std::map< BookKey, depth_quote, BidRanker > BIDMAP;
我现在想再定义一个map, key是字符,value就是BIDMAP
请问语法上应该如何写呢。
谢谢啦。
d****p
发帖数: 685
5
来自主题: Programming版 - 如何在c++里定义一个map of map
Performance wise, better map< char, BIDMAP& >
otherwise modifying the outter map may trigger value passing of the inner
map a lot of times
r*******y
发帖数: 1081
6
来自主题: Programming版 - STL map
Is this map a kind of hash map?
STL map will keep the key in order, but a general hash map does not require
this, right?
Thanks
l********a
发帖数: 1154
7
来自主题: Programming版 - map析构
上次问那个vector的释放问题,在trust和bihai的指点下,delete了2次的问题已经
解决了.但是程序依然报错,查了无数资料,加了很多检查的代码,找来找去,发现是跨dll
调用时,map的析构问题
类中有一个这样的数据:
class testGA
{
map params;
....
};
由于需要读取文件才能知道长度,因此调用的地方
直接 this->params.insert(make_pair(string1,string2));
因为我这个dll提供了很多功能,其他功能挨着测试过去,
最后才发现是功能执行完deallocate的时候::~pair出错了
有人说不能跨dll传递stl对象,可是我的map不是指针,没有new出来
所以也没办法在析构函数中delete,如果在析构时用this->params.clear()也会报错
有人说dll分配内存,哪里分配,哪里释放.为什么在析构函数中clear map也会出错?(
testGA::testGA();和testGA::~testGA();在同一个文件中)
这... 阅读全帖
l******9
发帖数: 579
8
I am working on drawing map from shape file in Python 3.2 basemap.
But, the longitude values at the bottom axis are only shown partially. Also,
all latitude values are missing.
Here is my python code.
import shapefile as sf
import sys
import numpy as np
import matplotlib.pylab as plt
from mpl_toolkits.basemap import Basemap
map = Basemap(projection='stere', lon_0=-106.4, lat_0= 31.9, lat_ts = 31.9
,
llcrnrlat=31.7, urcrnrlat= 31.85,
llcrnrlon=-106.5 , urcrnrlon= -1... 阅读全帖
s******9
发帖数: 283
9
http://www.sciencemag.org/content/early/2013/03/06/science.1236
The Brain Activity Map
A. Paul Alivisatos1,*,
Miyoung Chun2,
George M. Church3,
Karl Deisseroth4,
John P. Donoghue5,
Ralph J. Greenspan6,
Paul L. McEuen7,
Michael L. Roukes8,
Terrence J. Sejnowski9,*,
Paul S. Weiss10,
Rafael Yuste11,*
Abstract
Researchers propose building technologies to enable comprehensive mapping
and control of neural circuit activity.
Neuroscientists have made impressive advances in understanding the
microscale ... 阅读全帖
A******u
发帖数: 61
10
我有一个mouse ChIPseq的测序结果,我做了FASTQC之后,quality是好的,20million
reads,duplication只有10%,各种打分评价都是好的。
然后我用Map with Bowtie for Illumina,看到只有6%的reads 能map到mm10上。很奇
怪,然后我试着map到hg19上,有67%能map到hg19.
很诡异。这是怎么回事?是不是实际这个是人的DNA序列?但是测序之前的,从养细胞
到ChIP、建库,实验污染的可能绝对排除。我又担心是测序中心给错了文件,看了一下
这个文件序列里面每条reads的index,的确是我用的index。求问大牛觉得是怎么回事
?会是数据本身有问题,还是其它低级错误的可能(比如测序中心给错了文件,恰好
index也一样)、测序中心测错了样品/有污染等等?(不了解测序的具体实验过程)。
非常感谢!!
x*********e
发帖数: 12
11
来自主题: Biology版 - reads mapping
因为在你准备library的时候已经丢失了strand的信息(通常的protocol),结果是一
半的reads会map到positive,一半会map到negative,
还是你发现的那个read,很有可能是mapping错误,除非你发现很多reads,都如此
mapping,即使这样,也要考虑有没有可能是repeat导致的
c*********d
发帖数: 218
12
ESRI data&maps CD是全美国的map,可是我需要一个小city的data & map,怎样能
locate到一个小city?
试了open attribute table,但没有小city,甚至没有county, state
w**m
发帖数: 4061
13
来自主题: MedicalCareer版 - 刚弄会的,给咱版上整了个ID Map
在这里:
http://tinyurl.com/cqyl42
以下是从篮球版抄来的,“版权”归篮球版所有
从这里连入:
http://tinyurl.com/cqyl42
这个地图是对任何人都开放。
想加入者按照如下布骤:
->在大空白search框里输入你的地址,愿意多详细随自己,比如 "NYC, NY"然后点
"search maps",
-> 出现NYC,NY后,有小标签出现,上有"save to my maps" 字样,点进入
-> 出现 "Save to My Maps Which map do you want to save to?"
->登陆,在描述中写入你的id,nickname, discription
->save, done!
基本上就这个意思,可能用起来有点区别,我相信你能figure out。
欢迎您留下ID,方便您寻找附近的考友,学习,聚会,这个地图可能比较容易些。
记得别捣乱乱删别人的。
w*******y
发帖数: 60932
14
Link:
http://www.newegg.com/Product/Product.aspx?Item=N82E16858108486
$129.99 but use code EMCKBJH52 at checkout to drive price to 109.99
General
Brand
GARMIN
Model
n黺i 1300 LM
Part#
010-00782-4R
Type
Portable Navigation Device
Dimensions
Height
2.9"
Width
4.8"
Depth
0.6"
Weight
5.7 oz.
GPS System
Receiver
High-sensitivity receiver
Warm Acquisition Times
1 sec
Cold Acquisition Times
38 sec
Voice Guidance
Yes
Audio Features
Voice prompts (e.g. "Turn right in 500 ft.")
Speaks street names (e.g. "T... 阅读全帖
G*******s
发帖数: 10605
15
【 以下文字转载自 SmartShopper 俱乐部 】
发信人: GoRockets (火箭加油), 信区: SmartShopper
标 题: TomTom 5" GPS with LifeTime Maps and Traffic $89.99
发信站: BBS 未名空间站 (Thu Dec 22 21:42:05 2011, 美东)
Amazon has TomTom XXL 540TM 5-Inch Widescreen Portable GPS Navigator (
Lifetime Traffic & Maps Edition) for $89.99 with free shipping. (You may
need to select the box with 540TM Lifetime Traffic & Maps.) Another version
with no maps and traffic updates XXL 540S5-Inch Widescreen Portable GPS
Navigator is $79.99.
http://userquo... 阅读全帖
w*******y
发帖数: 60932
16
Link:
http://cgi.ebay.com/TomTom-VIA-1505TM-GPS-Navigation/2307573386
#ht_2104wt_1139" rel="nofollow" target="_blank" onclick="_gaq.push(['_
trackEvent', 'thread', 'click', '4037382 - ebay-dod-tomtom-via-1505tm-gps-
navigation-system-lifetime-maps-traffic-90-w-free-shipping']);">Link [Link:
http://cgi.ebay.com/TomTom-VIA-1505TM-GPS-Navigation/2307573386
#ht_2104wt_1139" rel="nofollow" target="_blank" onclick="_gaq.push(['_
trackEvent', 'thread', 'click', '4037382 - ebay-dod-tomtom-via-1505tm-gps... 阅读全帖
w*******y
发帖数: 60932
17
so i saw this on the front page of the dashboard, its like the 3rd ad says
33% off first strike map pack. If you click on it then ur taken to a link
for 800MSP, i went to the add ons section to check the other map packs and
they are all 1200MSP even this one. You have to click on the ad link on your
dashboard. Like Many people i have been waiting for the overpriced map
packs to go on sale, and im pretty sure this is the first time, and most
likely lowest price they will go so im gonna pick this ... 阅读全帖
a***s
发帖数: 1084
18
来自主题: Military版 - 血房地图的Google map (转载)
【 以下文字转载自 WaterWorld 讨论区 】
发信人: alias (贾人贾义), 信区: WaterWorld
标 题: 血房地图的Google map
发信站: BBS 未名空间站 (Tue Nov 2 19:18:26 2010, 美东)
http://maps.google.com/maps/ms?
ie=UTF8&oe=UTF8&msa=0&msid=111560301092049321699.0004921f02f43f6c4f07e
zt
血房地图开放版
谨以此地图,献给每一个在中国大陆恶性城镇化进程中不幸罹难或正在经受苦难的生命。
【最新通告】
1.从2010年11月1日起,每一位网友均有权修改血房地图开放版,但是,
2.出于对逝去生命的尊重,请各位在开始标注以前,确定您已经了解如何在地图上准确
地进行标注;
3.新手请访问血房地图新手上路版http://is.gd/gmCee
4.如果您在地图中发现标注的地址错误,请您协助纠正;
5.如果您在地图中发现标注的事实错误,请您把您所知道的事实和相关链接,添加到原
文下面,请勿删
除原文,请给网友一个辨明... 阅读全帖
l****z
发帖数: 29846
19
January 6, 2013 by Warner Todd Huston
Fox News recently reported that ex-crooks are denouncing the New York paper
that published the names and addresses of thousands of the state’s gun
owners saying that publishing the information was nothing less than a road
map for criminals planning home invasions and burglaries.
In the last half of December, the Journal News a small paper in suburban
Westchester, New York, published an interactive map featuring the names and
addresses of the gun owners in ... 阅读全帖
b******o
发帖数: 5644
20
Brewster, N.Y. – 1/13/2013 – Today Senator Greg Ball (Patterson – R, C, I
) announced that a burglary has been reported on Davis Ave. in White Plains,
New York that evidently ties into The Journal News gun maps. It is reported
that the burglar used The Journal News’ interactive gun map to target a
home included on the map. Luckily the gun was locked up and no one was hurt.
http://www.nysenate.gov/press-release/breaking-news-attempted-g
Q*****8
发帖数: 369
21
来自主题: Automobile版 - Google Map 做 GPS 好用吗?
现在用的是garmin,感觉有时候garmin计算速度慢,比如拐错弯,要好一会儿才能重新
计算过来。主要还是想直接用手机,方便,不用另外弄个GPS。
google map还有个好处是知道accident地点。请问一下google map是否可以像garmin那
样子设置一下,避开toll station吗?
如果google map可以长期当做GPS使用,麻烦推荐一个Smartphone Car Mounts,不容易
从挡风玻璃上掉下来的,这东西应该配有充电器吧,车内电源。
Q*****8
发帖数: 369
22
来自主题: Automobile版 - Google Map 做 GPS 好用吗?
google map custom name又找不到了,搜了一下,很多2015年的帖子都不适用现在的
google map,都没发现哪里有edit name
http://www.cnet.com/how-to/give-custom-names-to-places-in-google-maps/
S********t
发帖数: 4402
23
记得以前买GPS不都是preloaded north America map的吗?查了2个GPS都没有加拿大
map. 手机的google map好像也不管用呀。
N****g
发帖数: 5246
24
去costco买一个有加拿大地图的...

记得以前买GPS不都是preloaded north America map的吗?查了2个GPS都没有加拿大
map. 手机的google map好像也不管用呀。
c***2
发帖数: 838
25
来自主题: JobHunting版 - map numbers to strings
Ok. I play it further to get a utility program.
==================================================
/* telwords.c

Given a telephone number (or any number),
print all possible words based on
digits-letters mapping from telephone key pads.
*/

#include
#include
#include
static char *digitsmaps[]={
"0",
"1",
"ABC",
"DEF",
"GHI",
"JKL",
"MNO",
"PQRS",
"TUV",
"WXYZ",
"#",
NULL
};

void doPrintTelephoneWo... 阅读全帖
g*********s
发帖数: 1782
26
google "bit map" and "stl map".
t**********n
发帖数: 145
27
bit map和map是完全两个东西。
建议wiki一下就很清楚。
a********n
发帖数: 1287
28
你的意思是map的实现是binary search tree,hash map的实现是hash。
s******n
发帖数: 3946
29
stl里的hash map就是哈希表,stl里的map是tree
c*******r
发帖数: 309
30
来自主题: JobHunting版 - 关于MAP REDUCE
一百万个amazon product id,问过去一小时销售量top 10的(map- reduce)
这题我的想法是用一个size10的MinHeap。 但是这100万个Product id分布在不同的
machine上,可能需要用map reduce去count每个product id的frequency,之后再
insert到heap里。但是这个Map-reduce具体是怎么实现的大牛能不能来讲下?
a***e
发帖数: 413
31
平时几乎不用c++,有没有哪位同学帮看看怎么能让这段程序通过编译?我觉得自己思
路是对了的,不知道如果面试中碰到这种情况是否影响?没觉得哪里template用错了啊
?多谢
主要是在
Point x(a,b);
std::map::iterator it=mp.find(x);
if (it==mp.end())
mp.insert(std::pair(x,1));
else
mp[x]++;
/**
* Definition for a point.
* struct Point {
* int x;
* int y;
* Point() : x(0), y(0) {}
* Point(int a, int b) : x(a), y(b) {}
* };
*/
class Solution {
public:
int maxPoints(vec... 阅读全帖
U***A
发帖数: 849
32
map
不知道如何比较你的key (Point).
你可以定义你的map为
map, int>
或者参考这个link。
http://stackoverflow.com/questions/1112531/what-is-the-best-way
a***e
发帖数: 413
33
我再看了看 http://www.cplusplus.com/reference/unordered_map/unordered_map/unordered_map/
请问你怎么知道那个map不用先判断是否里面有key对应的val,直接就像你那么写?int
curr=++map[key];(我是说你那么写是对的,但我不知道哪里能找到可以那么用的说
明?)
key=0L;key+=x;key<<=32;key+=y;
//find x,then y;
int curr=++map[key];
localmax=max(curr,localmax);
不用先判断key是否存在,像下面myMap这样
int hor = points[j].x - points[i].x;
int ver = points[j].y - points[i].y;
... 阅读全帖
r*******a
发帖数: 7
34
原题:
设计一个Map,满足下面的复杂度。
add: O(1) deletion: O(1) lookup: O(1) clear:O(1) iterate: O(number of
elements)。
请问是不是map 加上一个version number?
typedef struct elem {
int val;
int version;
} elem_t;
class map {
unordered_map T;
int cur_version;
void add (int key, int val) {
elem_t e;
e.val = val;
e.version = cur_version;
T[key] = e;
}
void clear() {
cur_version++;
}
bool lookup(int key) {
if (T.find(key) != T.end()) {
if (T[key].version == c... 阅读全帖

发帖数: 1
35
来自主题: JobHunting版 - google maps好牛啊
赞啊 Apple maps就是个笑话
[在 xunzhaocunzi (rushgoon poj lc,cd) 的大作中提到:]
:坐标德州某大城市,一个月前搬家,搬到一个山上,google maps当时搜不到地址。现
:在一个月过了,竟然就有完整的maps了,真牛啊
:请问大牛们这是怎么实现的?我能想到两个方法,请大牛赐教:
:1.通过手机跟踪我的位置,跟卫星发信号,然后卫星扫描我房子附近的空白区域,渐
渐完成地图。
:谢谢大家
C******e
发帖数: 11790
36
来自主题: Living版 - 请教个google map的问题。
如果我在google map上找到了位置A,想画个圆圈,以A为圆心,20 miles为半径。
google map有这个功能不?要没有的话,啥map有?要都没有,我也只好忍了!
T**J
发帖数: 3340
37
【 以下文字转载自 PDA 讨论区 】
发信人: TTBJ (涛涛不觉), 信区: PDA
标 题: update.Re: Finedrive研究结论:升级到新map就是iG3.0。 (转载)
发信站: BBS 未名空间站 (Sun Dec 17 23:46:20 2006), 转信
搞到另一个新版(无A/V-input)的FD400,带的软件是06年8月份的新版,也就是说
,就是iG3.0!
和X50v上的做了对比,主界面只有2个不同
1、iG3.0底下有4个框,分别显示到达时间/预计剩余时间/预计剩余里程/时速;FD
400只有3个,缺少第一个“到达时间”
2、iG3.0最下边有工具条,带有菜单栏和几个快捷连接;FD400没有。但是看FD400
的map update DVD的介绍里有一些需要通过iG3.0的文件菜单实现的功能比如模拟导
航过程。这个还需要继续研究。
另外
1、主菜单的排序/图标稍微变化了一些,有些子菜单比iG3.0少些不常用的项目。
2、Map的使用手册是老版的,ft,只有自己研究一下了。
3、不需要做任何破解,USB线一连,发现设备.....驱动.......
g******a
发帖数: 4774
38
四点优势制胜谷歌 map:
第一、无需联网制胜谷歌。
诺基亚导航服务事先实现地图内置,更新速度快,无需上线,消费者可以享受到 安
全可靠的服务。即便是需要适时的数据,那么下载的数据量也是非常少的。而谷歌地图
虽然是免费的,但是需要时时在线,因此诺基亚导航服务需要的流
量只是谷歌的 1/10(诺基亚手
机导航主要用卫星,在室内时转为用流量,而谷歌地图需要不断的从云端获取数据,实
时更新,在线流量较大,对 网络的要求较高,对电池的使用较为过度)。
第二、免费导航赢得中国用
户。
诺基亚全球同步宣布,导航
服务即日起全部免费。
第三、覆盖范围超出谷歌Map。
谷歌地图的覆盖范围仅仅在北美,而诺基亚的免费地图服务覆盖全球 180个国家的65
万个城市,涉及超过2800万公里的道路,而免费导航服务将覆盖全球74个国家、46种语
言,覆盖人口超过15亿。在这些国家,无论是开车道路转向的具体信息,还是行走时的
具体信
息,消费者都可以享受到免费导航带来的便利。
第四、突破的技术制胜Google Map。
这得益于诺基亚在2007
年10月,以81亿美元收购数
字导航公司Navteq
f*******e
发帖数: 411
39
今天被nokia带绕圈很汗

四点优势制胜谷歌 map:
第一、无需联网制胜谷歌。
诺基亚导航服务事先实现地图内置,更新速度快,无需上线,消费者可以享受到 安
全可靠的服务。即便是需要适时的数据,那么下载的数据量也是非常少的。而谷歌地图
虽然是免费的,但是需要时时在线,因此诺基亚导航服务需要的流
量只是谷歌的 1/10(诺基亚手
机导航主要用卫星,在室内时转为用流量,而谷歌地图需要不断的从云端获取数据,实
时更新,在线流量较大,对 网络的要求较高,对电池的使用较为过度)。
第二、免费导航赢得中国用
户。
诺基亚全球同步宣布,导航
服务即日起全部免费。
第三、覆盖范围超出谷歌Map。
谷歌地图的覆盖范围仅仅在北美,而诺基亚的免费地图服务覆盖全球 180个国家的65
万个城市,涉及超过2800万公里的道路,而免费导航服务将覆盖全球74个国家、46种语
言,覆盖人口超过15亿。在这些国家,无论是开车道路转向的具体信息,还是行走时的
具体信
息,消费者都可以享受到免费导航带来的便利。
第四、突破的技术制胜Google Map。
这得益于诺基亚在2007
年10月,以81亿美元
h*****s
发帖数: 114
40
来自主题: StartUp版 - google map api的问题
实时查google map API有局限:速度问题,访问次数限制问题
基于location搜索现在是很普遍的了,一般做法是:
step 1,根据地址用google map api反查出经纬度,然后保存到自己数据库或者其他数
据源
step 2, 按照不用距离,通过经纬度之间数学运算就可以找到满足条件的地址了,这时
候已经脱离google map api了
如果你用SQL Server,下面一个Function可以使用,其他DB的话,自己转化
CREATE FUNCTION [dbo].[GetDistanceBetweenTwoPoint](
@lat1 FLOAT,
@long1 FLOAT,
@lat2 FLOAT,
@long2 FLOAT)
RETURNS FLOAT
AS
BEGIN
DECLARE @DegToRad AS FLOAT
DECLARE @Ans AS FLOAT
DECLARE @Miles AS FLOAT
SET @DegToRad = 57.29577951
... 阅读全帖
j****n
发帖数: 4358
41
【 以下文字转载自 PDA 讨论区 】
发信人: dahuitu (firefox), 信区: PDA
标 题: 董存瑞说过:千万不能相信Google Map
发信站: BBS 未名空间站 (Wed Jan 19 14:49:02 2011, 美东)
这个版上早就有人抱怨过google map,昨天算是亲身经历了一次。
12533 Westheimer Rd, Houston, TX 77077
和Yahoo/Bing Maps对比一下就知道了。
要知道,Westheimer可是休士顿主要街道啊,彻底无语了。
c*********e
发帖数: 133
42
来自主题: Immigration版 - 大家怎么做citation map的
I created a map in google map (give it a name). Then look for the locations.
For every location, after you find it, make sure to save it into your own
created map.
Not sure if there's another way to do that
l**********r
发帖数: 4612
43
来自主题: Immigration版 - 请教如何用google map做油灯图?
我在map.google.com上只能一张map一个地址啊,如果要一张map同时显示20个国家怎么
做?
l******n
发帖数: 9344
44
来自主题: LosAngeles版 - Google map和Apple map的比较 (转载)
【 以下文字转载自 PDA 讨论区 】
发信人: seanoy (seanoy), 信区: PDA
标 题: Google map和Apple map的比较
发信站: BBS 未名空间站 (Thu Sep 20 19:23:15 2012, 美东)
rt
h*******d
发帖数: 1530
45
来自主题: LosAngeles版 - Google map和Apple map的比较 (转载)
【 以下文字转载自 PDA 讨论区 】
发信人: seanoy (seanoy), 信区: PDA
标 题: Google map和Apple map的比较
发信站: BBS 未名空间站 (Thu Sep 20 19:23:15 2012, 美东)
rt
c*g
发帖数: 1980
46
来自主题: NewJersey版 - 快评--Map of the Human Heart (转载)
【 以下文字转载自 Movie 讨论区 】
发信人: cgg (养猫专家, 99%), 信区: Movie
标 题: 快评--Map of the Human Heart
发信站: BBS 未名空间站 (Fri Sep 1 14:02:35 2006)
Map of the Human Heart (1993)
爱斯基摩人Avik在战争的前后进入了白人的世界。他在医院遇见了half breed
Albertine;后者是他的一生最爱,却在多年后嫁给了带他进入白人世界的恩师, map
maker Walter。他经历了幼年的疾病,战争的洗礼,不能圆满的爱情的挣扎。在轰炸美
丽的德雷斯顿后,他退出了白人的世界,回到了冰天雪地的北极。
我可以看出导演意图把它拍成一部史诗。个人的命运与战争交错。他和Albertine宿命
地相连,但后者不能脱离她拥有和追求的一切。到最后他开始厌倦一切白人。很不错的
故事—但我觉得导演挠了痒痒,没挠到痛快。总觉得这个故事可以说得更深入一点。或
者,像老狐狸伊斯特武德一样,把它说得不动声色,却又暗流起伏。总之,稍觉浮浅。
结局不错,但没有完全脱离好莱坞的窠臼。
z**r
发帖数: 17771
47
没错,俺们绕了无数个圈子,后来打算用手机上网看,结果俺手机装了个中文系统,
google map居然把wren road给直接给翻译成雷恩路,俺一下子就放弃了,不过看来看
了也是白看,没想起用yahoo map

吧.
j****n
发帖数: 4358
48
来自主题: SanFrancisco版 - 关于Google Map的新闻 (转载)
【 以下文字转载自 PDA 讨论区 】
发信人: dahuitu (firefox), 信区: PDA
标 题: 关于Google Map的新闻
发信站: BBS 未名空间站 (Tue Jul 12 16:51:04 2011, 美东)
今天早上在NPR上听到的:Google Maps Shows Private Driveway as Park Entrance
Read more:
http://www.myfoxla.com/dpps/news/offbeat/google-maps-shows-priv
j****n
发帖数: 4358
49
来自主题: SanFrancisco版 - 关于Google Map的新闻 (转载)
really?
a few times google map lead me wrong place,
and I missed my cruise.
google map ruined my vacation.
can I earn money for sueing google that because google map lead me wrong
place and ruined my vacation?
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)