0

我在 c#.Net 中工作。我的要求是根据作为参数给出的地址、城市、州和邮编从 api 获取纬度和经度。

我在 Excel 表中有 350 个商店的详细信息。最初我使用的是 google api。

if (strAdd != "" && strCity != "" && strState != "" && strZip != "" && strStoreNo != "")
                {
                    Address = strAdd.Trim() + "," + strCity.Trim() + "," + strState.Trim() + "," + strZip.Trim();
                    string routeReqUrl = "http://maps.google.com/maps/geo?q={0}&output=xml&oe=utf8&sensor=true_or_false&key={1}";
                    string url = string.Format(routeReqUrl, Address.Replace(' ', '+'), "ABQIAAAA5rV-auhZekuhPKBTkuTC3hSAmVUytQSqQDODadyYeWY4ZYaVyRRv4thyrzzOQ7AMUl_hIjoG8LomGA");
                    HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
                    req.Method = "GET";
                    HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
                    Stream respStream = resp.GetResponseStream();
                    XmlDocument xDoc = new XmlDocument();
                    xDoc.Load(respStream);
                    if (xDoc.GetElementsByTagName("coordinates")[0].InnerText.Contains(","))
                    {
                        string[] coordinates = xDoc.GetElementsByTagName("coordinates")[0].InnerText.Split(',');
                        string Latitude = coordinates[1];
                        string Longtitude = coordinates[0];

                        Logger.Log.Debug("[Latitude and Longitude] " + " Store - No " + strStoreNo + " Addr Line 1 " + strAdd + " Latitude " + Latitude + " Longitude " + Longtitude);
                    }
                }

在上面的代码中,只有大约 10 到 15 家商店,我才能获得纬度和经度的详细信息。之后,我在“(xDoc.GetElementsByTagName(“坐标”)[0] ......”中收到对象引用错误。

在那之后,我尝试了 yahoo api,我使用的是拥有 350 家商店的同一张 excel 表。

dsxml.ReadXml("http://where.yahooapis.com/geocode?appid=capelinks&location=" + Address + "&Geocode=Geocode");
                    if (dsxml.Tables[0].Rows.Count > 0)
                    {
                        if (dsxml.Tables[1].TableName == "Result")
                        {
                            string Latitude = dsxml.Tables[1].Rows[0]["Latitude"].ToString();
                            string Longtitude = dsxml.Tables[1].Rows[0]["Longitude"].ToString();
                            Logger.Log.Debug("[Latitude and Longitude] " + " Store - No " + strStoreNo + " Addr Line 1 " + strAdd + " Latitude " + Latitude + " Longitude " + Longtitude);
                        }
                    }

在这里,它处理所有 350 存储正确,没有任何错误。

google api会出现什么问题。大量店铺取经纬度明细是否有限制。

4

1 回答 1

0

我不确定这是否是您的示例问题,但Google Geocoding API V2 文档提到 V2 版本现在已弃用:

注意:Google Maps Geocoding API 第 2 版已于 2010 年 3 月 8 日正式弃用。V2 API 将继续工作到 2013 年 3 月 8 日。我们鼓励您将代码迁移到新的 Geocoding API。

您可以尝试切换到最新的Geocoding API V3。要记住的一件事是,当您在 Google 地图的上下文中显示结果时,Google 条款仅允许使用此服务。

如果雅虎服务提供你需要的数据,我会坚持下去。

于 2012-12-19T20:12:26.987 回答