How to Convert Coordinates from CSV to ESRI Shapefile

  Рет қаралды 15,326

GeoDelta Labs

GeoDelta Labs

Күн бұрын

Пікірлер: 41
@sanjayawanninayake3819
@sanjayawanninayake3819 4 жыл бұрын
Thank you Sir for the awesome and very useful tutorial. Looking forward to see more tutorials during this quarantine days. stay home learn from home ..
@stewartrobertson6434
@stewartrobertson6434 2 жыл бұрын
Cheers, helped alot! But an easier solution for adding a coordinate system is just adding it in: airport_gdf = gpd.GeoDataFrame(airport_data, geometry = gpd.points_from_xy(airport_data['Lon'], airport_data['Lat'], crs = 'EPSG:4326')) with the ending there
@geodeltalabs
@geodeltalabs 2 жыл бұрын
👍
@vishnusai2468
@vishnusai2468 4 жыл бұрын
Excellent Video!!! Can you also make a video on how to find if a location/address/point Present within a shapefile/multipolygon file (defines by boundaries coordinates) ?? Thanks in advance. It would be great if you could let me know how to connect with you to discuss about potential work that you can help us with. Thank You
@JorgeRodriguez-mp1mt
@JorgeRodriguez-mp1mt 4 жыл бұрын
Thanks for the tutorial greetings from Mexico
@geodeltalabs
@geodeltalabs 4 жыл бұрын
You are welcome :)
@gatorpika
@gatorpika 3 жыл бұрын
Awesome tutorial, thanks!
@naiemsheikh4752
@naiemsheikh4752 4 жыл бұрын
I'm having trouble when running the file to generate coordinate referencing system in both my and your provided script. Please help me. The error is "TypeError: open() got multiple values for keyword argument 'crs_wkt'"
@CessTenn
@CessTenn 3 жыл бұрын
crs instead of crs_wkt
@mohitjani4049
@mohitjani4049 3 жыл бұрын
@@CessTenn Thank you very much. This worked.
@Polyarnik89
@Polyarnik89 2 жыл бұрын
tnx
@bearsob
@bearsob 2 жыл бұрын
@@CessTenn life saver
@souravdey1227
@souravdey1227 3 жыл бұрын
I get this TypeError: open() got multiple values for keyword argument 'crs_wkt'. I am not getting what I did wrong. then I copy pasted the epsg wkt for 4326 into a notepad and saved it as a prj file in the same directory. it then worked.
@muhammadanjum524
@muhammadanjum524 4 жыл бұрын
Excellent sir
@mannu2715
@mannu2715 4 жыл бұрын
Excellent video Thanks for sharing. It would be great if you share the videos on how to convert csv to polygon shapefile and what should be the csv format for polygon geometry. Thanks in advance
@shrutijain9921
@shrutijain9921 4 жыл бұрын
can you please make a video on how to convert csv into line shapefile
@biltupal3254
@biltupal3254 4 жыл бұрын
Excellent video
@Polyarnik89
@Polyarnik89 2 жыл бұрын
9:00 what about .tab file ? What driver should I use ?
@aaronstha23
@aaronstha23 4 жыл бұрын
Thank you for the tutorial. However, I have encountered following problem while executing the script: TypeError: open() got multiple values for keyword argument 'crs_wkt' Is this some dependencies issue? Would appreciate your help.
@geodeltalabs
@geodeltalabs 4 жыл бұрын
Hi, can you post the exact code which you typed in into your IDE? Thanks.
@aaronstha23
@aaronstha23 4 жыл бұрын
@@geodeltalabs Finally solved!! I was using crs_wkt instead of crs and got that error. Anyways, Thank you.
@navavitponganan9581
@navavitponganan9581 4 жыл бұрын
@@aaronstha23 I got that error too. plz tell me how to solve. thank you
@MA-hy5fq
@MA-hy5fq 4 жыл бұрын
Wonderful tutorial, Thanks buddy. I just downloaded the files you kindly shared, and ran the code. However, it shows this error for the last line in the code: filename, "w", driver=driver, crs_wkt=crs_wkt, schema=schema, **kwargs TypeError: open() got multiple values for keyword argument 'crs_wkt' Any idea?
@mdazimulhaque
@mdazimulhaque 4 жыл бұрын
I also had the same error. I fixed it by changing the last parameter in the last line from airport_gdf.to_file(filename = 'airports.shp', driver = 'ESRI Shapefile', crs_wkt = ESRI_WKT) into the below form by replacing crs_wkt to crs airport_gdf.to_file(filename = 'airports.shp', driver = 'ESRI Shapefile', crs = ESRI_WKT)
@sunitap2580
@sunitap2580 4 жыл бұрын
How you decide the EPSG code to check in the epsg website
@andreasneukirchen7626
@andreasneukirchen7626 2 жыл бұрын
Can you please make a video on how to convert csv to polylines (like flighttracks) with attributes
@lucasebh
@lucasebh 4 жыл бұрын
GREAT!
@favourjoseph1691
@favourjoseph1691 4 жыл бұрын
sir pls after installing my anaconada distribution i could not find the file explorer
@mannu2715
@mannu2715 4 жыл бұрын
It is simply Files instead of file explorer.
@DAVIDESTEBANDUQUECARMONA
@DAVIDESTEBANDUQUECARMONA 4 жыл бұрын
Thanks, but I want to know how can I create a shapifle lines, from csv
@geodeltalabs
@geodeltalabs 4 жыл бұрын
That would have a bit of a different approach.. I suggest you look into 'shapely linestrings' to get a better idea about the structure
@DAVIDESTEBANDUQUECARMONA
@DAVIDESTEBANDUQUECARMONA 4 жыл бұрын
@@geodeltalabs sometimes I see a bit video ando text, but i still have many quesitons, i would see a little video, if you know thanks
@saudfaleh6436
@saudfaleh6436 4 жыл бұрын
i now its not my business but i couldn't help stop thinking all the time watching the video why he uses windows7 until now ?
@wildlife_and_drones1320
@wildlife_and_drones1320 3 жыл бұрын
I have a trouble importing geopandas, i have tried to install the libraruy first like this !pip install "geopndas" tried pip install geopandas" but none is working any idea to solve this please?
@geodeltalabs
@geodeltalabs 3 жыл бұрын
Hi, kindly go through the following tutorial and follow the steps explained at the beginning of the tutorial to install geopandas library correctly :) kzbin.info/www/bejne/qmjPnZyAjaunbtk
Extracting Topographic Elevations using Python
16:49
GeoDelta Labs
Рет қаралды 11 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
How to Build an Interactive Dashboard with DeepSeek R1
17:09
GeoDelta Labs
Рет қаралды 15 М.
How to import X Y coordinates from Excel to AutoCAD direct! (English)
9:50
Intro to GeoPandas
21:01
Geospatial Programming
Рет қаралды 20 М.
plotting maps with geopandas and matplotlib
15:09
101touchapps
Рет қаралды 59 М.
Converting CSV to a shapefile in QGIS
5:47
CWU Geography
Рет қаралды 22 М.
What is a Coordinate Reference Systems (CRS)?
17:54
Jonathan Soma
Рет қаралды 19 М.
Importing Excel file (CSV) Coordinates in QGIS (ENGLISH)
8:56
RS and GIS with Dr. Manoj
Рет қаралды 26 М.