alex_bn_lee

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

统计

02 2024 档案

[981] JSON module in Python
摘要:In Python, the json module provides functions for encoding and decoding JSON data. Here's a brief explanation of the commonly used functions: json.dum 阅读全文

posted @ 2024-02-26 06:49 McDelfino 阅读(3) 评论(0) 推荐(0) 编辑

[980] Send an email with Python and Sendgrid!
该文被密码保护。

posted @ 2024-02-23 11:33 McDelfino 阅读(0) 评论(0) 推荐(0) 编辑

[979] Layer to KML, Define the feature name
摘要:ref: Layer to KML Change the display field in Layer Properties > Display. 阅读全文

posted @ 2024-02-23 07:04 McDelfino 阅读(7) 评论(0) 推荐(0) 编辑

[978] The way that KML shows the local file
该文被密码保护。

posted @ 2024-02-22 12:02 McDelfino 阅读(0) 评论(0) 推荐(0) 编辑

[977] Using AWS Lambda Function to run a local Python file
该文被密码保护。

posted @ 2024-02-21 14:27 McDelfino 阅读(0) 评论(0) 推荐(0) 编辑

[976] How to install a Python Dependency on AWS Lambda
摘要:ref: How to install a Python Dependency on AWS Lambda (2023) Create a folder to save the Python depenency and right click the folder to open the termi 阅读全文

posted @ 2024-02-21 06:53 McDelfino 阅读(5) 评论(0) 推荐(0) 编辑

[975] Creating a POSTMAN Api | AWS API Gateway Passing Data to AWS Lambda
摘要:ref: AWS Lambda Function URLs ref: Guide to AWS Lambda Function URLs ref: Test your Lambda function with Postman 1. Create a Lambda Function aws -> Se 阅读全文

posted @ 2024-02-20 10:40 McDelfino 阅读(29) 评论(0) 推荐(0) 编辑

[974] Amazon S3 related stuff
摘要:📋 - Prerequisite: Setting up Amazon S3 📋 - Getting started with Amazon S3 📺 - Getting started with Amazon S3 - Demo | Amazon Web Services 📋 - What 阅读全文

posted @ 2024-02-16 12:08 McDelfino 阅读(4) 评论(0) 推荐(0) 编辑

[973] FME related trainings
摘要:2019 FME Desktop Basic Training Course 2019 FME Desktop Basic Training Course FME Desktop Basic Training Manual 2019 FME Desktop Advanced Training Cou 阅读全文

posted @ 2024-02-15 10:59 McDelfino 阅读(5) 评论(0) 推荐(0) 编辑

[972] Remove specific sheets from an Excel file
摘要:To remove specific sheets from an Excel file, you can use the openpyxl library in Python. Here's how you can do it: from openpyxl import load_workbook 阅读全文

posted @ 2024-02-13 06:20 McDelfino 阅读(5) 评论(0) 推荐(0) 编辑

[971] [Keep original formats] Combine multiple Excel files into one Excel file with multiple sheets
摘要:If the existing Excel file has special formatting that prevents reading it directly with Pandas, you can use a library like openpyxl to handle the app 阅读全文

posted @ 2024-02-12 14:15 McDelfino 阅读(4) 评论(0) 推荐(0) 编辑

[970] Combine multiple Excel files into one Excel file with multiple sheets
摘要:You can combine multiple Excel files into one Excel file with multiple sheets using the Pandas library in Python. Here's a general approach: Read each 阅读全文

posted @ 2024-02-12 14:13 McDelfino 阅读(10) 评论(0) 推荐(0) 编辑

[969] Add a spatial reference (a coordinate reference system, CRS) to a GeoDataFrame in GeoPandas
摘要:To add a spatial reference (a coordinate reference system, CRS) to a GeoDataFrame in GeoPandas, you can set the crs attribute of the GeoDataFrame to t 阅读全文

posted @ 2024-02-08 14:04 McDelfino 阅读(14) 评论(0) 推荐(0) 编辑

[968] Pandas, Data Frame, dtypes
摘要:In Pandas, you can use the dtypes attribute of a DataFrame to get the data type of each column. Here's how you can do it: import pandas as pd # Create 阅读全文

posted @ 2024-02-08 14:01 McDelfino 阅读(24) 评论(0) 推荐(0) 编辑

[967] Merge multiple polygons into a single unified polygon
摘要:In Shapely, you can use the unary_union method to merge a list of polygons into a single, unified polygon. Here's an example: from shapely.geometry im 阅读全文

posted @ 2024-02-08 13:58 McDelfino 阅读(16) 评论(0) 推荐(0) 编辑

[966] Merge two DataFrames horizontally
摘要:In Pandas, you can use the pd.concat function to merge two DataFrames horizontally (i.e., along columns). Here's an example: import pandas as pd # Sam 阅读全文

posted @ 2024-02-08 13:56 McDelfino 阅读(7) 评论(0) 推荐(0) 编辑

[965] Generate a new empty DataFrame with the same columns as an existing DataFrame in Pandas
摘要:To generate a new empty DataFrame with the same columns as an existing DataFrame in Pandas, you can use the pd.DataFrame constructor and pass the colu 阅读全文

posted @ 2024-02-08 13:54 McDelfino 阅读(6) 评论(0) 推荐(0) 编辑

[964] Convert a DataFrame to a GeoDataFrame
摘要:To convert a DataFrame to a GeoDataFrame in Pandas, you can use the geopandas.GeoDataFrame constructor and provide the geometry column. Here's an exam 阅读全文

posted @ 2024-02-08 13:51 McDelfino 阅读(34) 评论(0) 推荐(0) 编辑

[963] DataFrame to GeoDataFrame, GeoDataFrame.to_file() raises ValueError: Invalid field type <class 'numpy.int64'>
该文被密码保护。

posted @ 2024-02-08 13:45 McDelfino 阅读(0) 评论(0) 推荐(0) 编辑

[962] ArcGIS Pro - Calculate Field by Python
摘要:ref: Calculate Field Python examples An example: 阅读全文

posted @ 2024-02-05 08:12 McDelfino 阅读(12) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示