Last active
July 15, 2017 05:47
-
-
Save ymattu/be89e83d0247c5f65e9f6205179dcab6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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