タグ

ブックマーク / timg.ws (1)

  • Tim Groeneveld

    Using Rlang, we import the Shapefile from the ABS, import the cleaned CSV file with decimal lat/long points, and use st_intersects from the sf package to determine what state a given city is in, based on it’s lat/long location. library(sf) library(dplyr) library(sp) library(progress) map = read_sf("1270055004_sos_2016_aust_shape/SOS_2016_AUST.shp") nc_geom <- st_geometry(map) latLong <- read.csv(f

    tsimo
    tsimo 2008/07/26
  • 1