Skip to content

Instantly share code, notes, and snippets.

@ymattu
Last active July 15, 2017 05:47
Show Gist options
  • Save ymattu/be89e83d0247c5f65e9f6205179dcab6 to your computer and use it in GitHub Desktop.
Save ymattu/be89e83d0247c5f65e9f6205179dcab6 to your computer and use it in GitHub Desktop.
options cmplib = sasfunc.functions;
data foo;
input customer_number lat long;
datalines;
1 35.039200 135.728965 /* 金閣寺 */
2 35.626065 139.884678 /* ディズニーシー */
3 35.649114 139.742946 /* 慶應義塾大学 */
;
run;
data bar ;
set foo;
mesh = latlong2mesh(lat, long);
run;
proc print data=bar; run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment