Skip to content

Instantly share code, notes, and snippets.

@kenichi
Created April 17, 2014 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenichi/10957492 to your computer and use it in GitHub Desktop.
Save kenichi/10957492 to your computer and use it in GitHub Desktop.
kzerza:terraformer-ruby $ irb -I./lib -rterraformer
>> f = Terraformer::Feature.new
=> #<Terraformer::Feature:0x00000000d90468>
>> f.geometry = Terraformer::Coordinate.new(-122.6764, 45.5165).buffer 100; nil
=> nil
>> puts f.to_json
{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-122.67550601034951,45.516562033665174],[-122.67551894559217,45.51662290132699],[-122.67554036587042,45.51668278727813],[-122.67557006489525,45.51674070977981],[-122.67560775664884,45.516796668829606],[-122.67565307813899,45.51684968268687],[-122.67570559289496,45.516899751348255],[-122.67576479517095,45.51694491133269],[-122.67583011481669,45.51698614437468],[-122.67590092276828,45.51702345047074],[-122.67597653710642,45.51705486613829],[-122.67605622962373,45.51708137311326],[-122.67613923283767,45.517101989652815],[-122.67622474738195,45.51711769749451],[-122.67631194970474,45.517126533156244],[-122.6764,45.517129478376944],[-122.67648805029526,45.517126533156244],[-122.67657525261805,45.51711769749451],[-122.67666076716232,45.517101989652815],[-122.67674377037628,45.51708137311326],[-122.67682346289358,45.51705486613829],[-122.67689907723172,45.51702345047074],[-122.67696988518331,45.51698614437468],[-122.67703520482904,45.51694491133269],[-122.67709440710505,45.516899751348255],[-122.67714692186101,45.51684968268687],[-122.67719224335116,45.516796668829606],[-122.67722993510473,45.51674070977981],[-122.67725963412958,45.51668278727813],[-122.67728105440783,45.51662290132699],[-122.6772939896505,45.516562033665174],[-122.67729831528412,45.51650018429397],[-122.6772939896505,45.51643833495006],[-122.67728105440783,45.51637746736843],[-122.67725963412958,45.516317581547796],[-122.67722993510473,45.516258677486896],[-122.67719224335116,45.51620370038573],[-122.67714692186101,45.516150686772896],[-122.67709440710505,45.51610061837919],[-122.67703520482904,45.51605447693417],[-122.67696988518331,45.51601324416637],[-122.67689907723172,45.51597692007146],[-122.67682346289358,45.51594452291367],[-122.67674377037628,45.51591801615378],[-122.67666076716232,45.51589739978844],[-122.67657525261805,45.515882673815064],[-122.67648805029526,45.51587383823178],[-122.6764,45.515870893037466],[-122.67631194970474,45.51587383823178],[-122.67622474738195,45.515882673815064],[-122.67613923283767,45.51589739978844],[-122.67605622962373,45.51591801615378],[-122.67597653710642,45.51594452291367],[-122.67590092276828,45.51597692007146],[-122.67583011481669,45.51601324416637],[-122.67576479517095,45.51605447693417],[-122.67570559289496,45.51610061837919],[-122.67565307813899,45.516150686772896],[-122.67560775664884,45.51620370038573],[-122.67557006489525,45.516258677486896],[-122.67554036587042,45.516317581547796],[-122.67551894559217,45.51637746736843],[-122.67550601034951,45.51643833495006],[-122.67550168471588,45.51650018429397],[-122.67550601034951,45.516562033665174]]]}}
=> nil
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment