From 28a896b152830c0a4a7ec186ddfc057b56feb2bc Mon Sep 17 00:00:00 2001 From: Kr li <115681390+li589@users.noreply.github.com> Date: Thu, 11 Jun 2026 16:48:21 +0800 Subject: [PATCH] Delete step_by_step_GPT directory --- step_by_step_GPT/Core_data_process.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 step_by_step_GPT/Core_data_process.py diff --git a/step_by_step_GPT/Core_data_process.py b/step_by_step_GPT/Core_data_process.py deleted file mode 100644 index 1407bf7..0000000 --- a/step_by_step_GPT/Core_data_process.py +++ /dev/null @@ -1,25 +0,0 @@ -import os -import pandas as pd -import numpy as np -from tqdm import tqdm -import geopandas as gpd -from pyproj import Transformer -import json - -class InputDataPrepare(): - ''' - This class is used to prepare input data for the model. - ''' - def __init__(self, trace_csv, ROI_shp, POI_csv): - self.trace_pd = pd.read_csv(trace_csv) - self.ROI_shp = gpd.read_file(ROI_shp) - self.proj_crs = self.ROI_shp.crs - self.shp_range = self.ROI_shp.total_bounds # xmin,ymin,xmax,ymax - self.POI_pd = pd.read_csv(POI_csv) - - def __wgs84_to_proj(self, x, y): - transformer = Transformer.from_crs("EPSG:4326", self.proj_crs, always_xy=True) - x, y = transformer.transform(x, y) - return x, y - - def __ \ No newline at end of file