Excellent. It would be interesting to show how to extract pixel values from an ESRI Shapefile of polygons to create a dataframe. It would also be interesting to learn how to assign a value to each sample according to a field in the attribute table. Thanks for your videos!!!
@christodoulossazeides8988 Жыл бұрын
i was searching for 3 days to do that. Every one suggested a different packages as (gdal, pygmt...) and i was not able to extract the values. Your simple way solve my problem. thank you very match
@geodeltalabs Жыл бұрын
Glad I could help
@ibrahimalabdulsalam10053 жыл бұрын
I should always start your videos by clicking the LIKE button.
@niampahamidou89312 жыл бұрын
Thanks a lot for this video. You're the best!
@johnowusukonduah23052 жыл бұрын
These video came as a live saver just when I needed it most. Thank you very much. But I want to ask if this same approach works similarly for multiband raster data? If its not so, please can you do a video to cover that? This will really help me a lot
@sonukumar-cy1fo3 жыл бұрын
Thank you very much sir for your kind support. Your all material is very interesting. May I request you to make one video on object based classification
@MrABN1433 жыл бұрын
Excellent brother 💐
@sanjayawanninayake38193 жыл бұрын
Good one...!!!👍
@nilpipra2 жыл бұрын
wish you could provide the sample files (raster and the points) used in this tutorials. We all learn a lot from you. You are the best!!
@geodeltalabs2 жыл бұрын
Thanks. Will include them wherever relevant in the upcoming videos :)
@nilpipra2 жыл бұрын
@@geodeltalabs : is there still a chance to upload this two files (US temp raster and station shape) used in this exercise?. I am doing something similar to that and it will be a great help if I have the exact file to practices,. Thanks in advance!
@syedrafsanali6522 Жыл бұрын
Thank you very much. It was very helpful.
@geodeltalabs Жыл бұрын
Glad it helped!
@syedrafsanali6522 Жыл бұрын
@@geodeltalabs Could you please check your email? I have sent something in detail. It would be a great help for me. Thanks again.
@PhatPham-User Жыл бұрын
Thanks so much for your great tutorial. I followed your step and I can extract the tiff file already but I still have a concern that I have many files from the year 1981 - up to now (the step is one day). I would like to get all data day by day but still cannot solve this problem, could you has any idea or could you make another tutorial to do that if possible. Thanks again for your kind.
@abdallahabdelmajeed8120 Жыл бұрын
Thank you very much but how can we do the same for polygons not point and in time series data?
@SiddhZarathustra Жыл бұрын
Great tutorial! Can you please share the source for download link or the temperature raster?
@AsifMarazi2 жыл бұрын
Great video... really helped me get closer to my goal. However, now I have multiple raster files, I tried to loop over the raster files but failed to write the extracted values in a better way.
@geodeltalabs2 жыл бұрын
Hi, you may follow this video and you will be able to get an insight on how to iterate through multiple raster files kzbin.info/www/bejne/labEh6WJmrF5o6M
@joshritman24803 жыл бұрын
Great content. Thanks. Where can we download the raster data (avg_temp_nov2021.tif) from?
@not4weak3 жыл бұрын
Put the readio statement outside for loop
@Jobsvisapro70303 жыл бұрын
Sir can you please upload complete tutorial list about PyQgis
@mrcactus1984 Жыл бұрын
hello, how could i extract values from a certain point from diferent rasters to table? thank you
@AayushiSaini-l3g10 ай бұрын
can you provide sample data that you have used??
@moumitaghorai20402 жыл бұрын
I am struggling with installing rasterio. I can see it in the site-packages folder. But cannot import it, getting an error. Do you have any suggestions on this?
@MrABN1433 жыл бұрын
Can we use same process in other operations in raster? Like solar panel monitor , thermal sensor raster?
@AbuZafor-yy5qh Жыл бұрын
AttributeError: 'numpy.float32' object has no attribute 'is_integer' at the last segment this error is come.What is the solution ?
@mmukarrammuneer87152 жыл бұрын
Can I done same task in Jupyter of NetCdf (Raster) file with any shaple file???
@geodeltalabs Жыл бұрын
Absolutely
@henryjayr Жыл бұрын
can you show tis in arcMap?
@geodeltalabs Жыл бұрын
In arcmap this can be done using one of the inbuilt tools. Search for the tool 'Extract values to point', and it basically does the same thing
@anitat9727 Жыл бұрын
thanks
@geodeltalabs Жыл бұрын
You're welcome!
@manasranjanpanda98593 жыл бұрын
Indeed it's an excellent tutorial but I think if we do have the shapefile of locations (includes coordinates) then just by using the extract raster values to points tool in ArcGIS, we can easily get values from n number of points that we need.
@matthese99863 жыл бұрын
But you have to pay for it
@manasranjanpanda98593 жыл бұрын
@@matthese9986 yeah I agree 😊
@isabelahorta30632 жыл бұрын
Hi! Thx for the tutorial! I got an error in the "print" line: --------------------------------------------------------------------------- IndexError Traceback (most recent call last) in () 11 rowIndex, colIndex = dem.index(longitude, latitude) 12 ---> 13 print(str(code) + ': ' + str(dem_data[rowIndex, colIndex])) IndexError: index 752266 is out of bounds for axis 0 with size 17336 Do you know how to solve it?
@isabelahorta30632 жыл бұрын
Hiiii! I already fixed it! I reprojected the shape and the raster to the same projection system. Thx.