7

I have a large raster layer with wind speed values assigned to each cell. I also have point data that displays locations where wind farms have been constructed. I would like to add the raster values to the wind farm location data. The goal is to figure out when each wind farm was built over each wind speed value. Any ideas?

Vince
  • 20,017
  • 15
  • 45
  • 64
Jessica
  • 71
  • 1
  • 1
  • 2

1 Answers1

11

If you have the Spatial Analyst extension, you can use the Extract Values to Points geoprocessing tool to do this very easily.

If you have multiple rasters for which you want to perform this extraction, you can use the Extract Multi Values to Points geoprocessing tool.

dmahr
  • 11,833
  • 40
  • 68
  • 1
    I've used the Extract Values to Points tool but it keeps assigning the "RASTERVALU" as -9999 for every location. I created my wind speed value raster using matlab. Each pixel has a color value that has been assigned a number. I'm worried that this is causing the tool you mentioned to fail. – Jessica Jul 02 '12 at 21:55
  • 2
    A RASTERVALU of -9999 indicates placeholder data, meaning the raster data does not properly underlie your point data. Have you visually confirmed using the Identify tool in ArcMap that your raster data directly underlie your points? If not, one of your datasets probably has a projection issue. – dmahr Jul 02 '12 at 23:11
  • Check your spatial reference system. – Tomek Jul 03 '12 at 05:23
  • I georeferenced using Albers Equal Area Conic projection, which is what the original map was projected in. Once the values were added I needed to project using WGS 1983. I've used the identity tool to confirm each cell contains the correct value. The mouse shows the correct lat/long. Are there typically issues when you georeference to a base map using one projection then change to another? – Jessica Jul 03 '12 at 13:34
  • And - the wind raster data says there isn't a defined spatial reference system. – Jessica Jul 03 '12 at 13:36
  • But do you see the points of wind farms on top of your raster? Or are they off in space somewhere else? – dmahr Jul 03 '12 at 15:38
  • You should be able to obtain the values following the answer suggested. However, all your layers must be on the same projection. Even if you see the points on top of the raster, Arcmap could be projecting them on the fly based on the first layer you added to the data frame. – Rodri Dec 09 '16 at 02:10