pip install geopandas
python
import geopandas as gpd
data = gpd.read_file('path/to/your/file.geojson')
python
import geopandas as gpd
data = gpd.read_file('path/to/your/file.geojson')
filtered_data = data.cx[xmin:xmax, ymin:ymax]
python
import geopandas as gpd
import matplotlib.pyplot as plt
data = gpd.read_file('path/to/your/file.geojson')
data.plot()
plt.show()
python
import geopandas as gpd
data = gpd.read_file('path/to/your/file.geojson')
data.to_file('path/to/your/output/file.geojson', driver='GeoJSON')