如何在R

时间:2015-12-08 10:23:13

标签: r rgdal sp

可以使用proj4string在R中查看投影sp对象的单位,例如:

> proj4string(myObject)
[1] "+proj=lcc +lat_1=44 +lat_2=49 +lat_0=46.5 +lon_0=3 +x_0=700000 +y_0=6600000 +ellps=GRS80 +units=m +no_defs"

但是有一种简单的方法可以获得单位吗?

1 个答案:

答案 0 :(得分:1)

可能是一种更干净的方式,但这对我有用:

function GetTweets(){
        var url ='https://api.twitter.com/1.1/statuses/user_timeline.json?count=2&callback=http://bidashboardlocal.com&screen_name=twitterapi&oauth_consumer_key=aExUgXGwG357VBdiPxiyg9uc6&oauth_nonce=e926bc4a1387ba2b90cc9c314e9718c9&oauth_signature=p5FW6On9cn8IlC1ATJW2e9OoIE0%3D&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1449567954&oauth_token=3717206714-GmBMClz8ULTV8JibTiUeQ2923tyn9H6e9hLRjf0&oauth_version=1.0';
        $.getJSON(url, function(data){
            alert(data);
            $.each(data, function(i, item) {
                $("#Test").append("<li>" 
                                        + item.text.linkify() 
                                        + " <span class='created_at'>" 
                                        + relative_time(item.created_at) 
                                        + " via " 
                                        + item.source
                                        + "</span></li>");
            });
        });

    }