- 授权协议: Artistic License/GPL
- 开发语言: Perl
- 操作系统: Windows
- 软件首页: http://search.cpan.org/~perhenrik/Geo-GeoNames/lib/Geo/GeoNames.pm
软件介绍
======Perl GeoNames Client 是 GeoNames 的 Perl 语言客户端开发包。
示例代码:
use Geo::GeoNames; use Data::Dumper; my $geo = new Geo::GeoNames(); # make a query based on placename my $result = $geo->search(q => 'Fredrikstad', maxRows => 2); # print the first result print " Name: " . $result->[0]->{name}; print " Longitude: " . $result->[0]->{lng}; print " Lattitude: " . $result->[0]->{lat}; # Dump the data structure into readable form # This also will show the attributes to each found location Data::Dumper->Dump() # Make a query based on postcode $result = $geo->postalcode_search(postalcode => "1630", maxRows => 3, style => "FULL");
产品经理的20堂必修课
徐建极 / 人民邮电出版社 / 2013-9-1 / 59.00元
《产品经理的20堂必修课》以作者八年的产品经理工作实践为基础,通过系统的理论结合丰富的实例的方法,全面地总结了作为一名互联网产品经理所应掌握的知识。 《产品经理的20堂必修课》分为三大部分。 讲产品:深入剖析互联网产品成功的要素,分别从需求导向、简单原则、产品运营、战略布局等维度,分析如何让产品在残酷的互联网竞争中脱颖而出。 讲方法:着重分析优秀的产品团队运作的工作方法和程序,详......一起来看看 《产品经理的20堂必修课》 这本书的介绍吧!
