Тёмный

How to Convert Coordinates from CSV to ESRI Shapefile 

GeoDelta Labs
Подписаться 129 тыс.
Просмотров 15 тыс.
50% 1

In this tutorial, you will learn how to make the conversion of a coordinates list given in a .csv file, to an ESRI Shapefile using Python GeoPandas
Download exercise files - drive.google.com/open?id=1Wrt...
⭐NOTE:
‘Kite’ is an excellent tool that can help you boost your productivity when it comes to programming with its free Artificial Intelligence (AI) powered coding assistant. Kite is a plugin which provides smart completions and documentation as you’re typing-in your code, and its compatible with most of the well-known IDEs such as PyCharm, Spyder and VS Code. I absolutely love it, and recommend you guys to try it out as well.
www.kite.com/get-kite/?...

Опубликовано:

 

2 апр 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 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 ..
@gatorpika
@gatorpika 2 года назад
Awesome tutorial, thanks!
@JorgeRodriguez-mp1mt
@JorgeRodriguez-mp1mt 4 года назад
Thanks for the tutorial greetings from Mexico
@geodeltalabs
@geodeltalabs 4 года назад
You are welcome :)
@biltupal3254
@biltupal3254 4 года назад
Excellent video
@muhammadanjum524
@muhammadanjum524 4 года назад
Excellent sir
@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.
@lucasebh
@lucasebh 4 года назад
GREAT!
@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
@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
@Polyarnik89
@Polyarnik89 2 года назад
9:00 what about .tab file ? What driver should I use ?
@sunitap2580
@sunitap2580 3 года назад
How you decide the EPSG code to check in the epsg website
@naiemsheikh4752
@naiemsheikh4752 3 года назад
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 2 года назад
@@CessTenn Thank you very much. This worked.
@Polyarnik89
@Polyarnik89 2 года назад
tnx
@bearsob
@bearsob Год назад
@@CessTenn life saver
@stewartrobertson6434
@stewartrobertson6434 Год назад
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 Год назад
👍
@shrutijain9921
@shrutijain9921 3 года назад
can you please make a video on how to convert csv into line shapefile
@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)
@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 3 года назад
@@aaronstha23 I got that error too. plz tell me how to solve. thank you
@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 :) ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-t7lliJXFt8w.html
@andreasneukirchen7626
@andreasneukirchen7626 Год назад
Can you please make a video on how to convert csv to polylines (like flighttracks) with attributes
@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 3 года назад
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 ?
Далее
Extracting Topographic Elevations using Python
16:49
Просмотров 11 тыс.
10 Geoprocessing Applications of GeoPandas Library
51:33
Как пронести Конфеты В ТЮРЬМУ
19:16
Ne jamais regarder une fille à la plage 😂
00:10
Просмотров 669 тыс.
Importing Excel coordinates into Global Mapper
5:22
What is a Coordinate Reference Systems (CRS)?
17:54
Просмотров 17 тыс.
plotting maps with geopandas and matplotlib
15:09
Просмотров 53 тыс.
An Absolute Beginner's Guide to Python GeoPandas
48:42
Как пронести Конфеты В ТЮРЬМУ
19:16