This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import GeoJSON data from naturalearthdata.com into Blender as a globe | |
# run inside Blender from scripts | |
import bpy | |
import geopandas as gpd | |
import numpy as np | |
RADIUS = 10.0 # Modify this value as desired | |
# Load GeoJSON data using geopandas |