34 add points from xy
Uncomment the following line to install leafmap if needed.
In [ ]:
Copied!
# !pip install leafmap
# !pip install leafmap
In [ ]:
Copied!
import leafmap
import pandas as pd
import leafmap
import pandas as pd
In [ ]:
Copied!
# leafmap.update_package()
# leafmap.update_package()
Using a CSV file containing xy coordinates
In [ ]:
Copied!
m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
m.add_points_from_xy(data, x="longitude", y="latitude")
m
m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
m.add_points_from_xy(data, x="longitude", y="latitude")
m
Using a Pandas DataFrame containing xy coordinates.
In [ ]:
Copied!
m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
df = pd.read_csv(data)
m.add_points_from_xy(df, x="longitude", y="latitude")
m
m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
df = pd.read_csv(data)
m.add_points_from_xy(df, x="longitude", y="latitude")
m
In [ ]:
Copied!