Select to view content in your preferred language

pd.DataFrame.spatial.from_table() is loading column labels but not data?

5588
10
Jump to solution
11-10-2020 07:19 AM
SamuelStroebel
Emerging Contributor

as the title says, trying to access a local file in a GDB, a dataframe is created with the correct number of columns but no data? 

Code:

import pandas as pd
from arcgis.features import GeoAccessor, GeoSeriesAccessor
from arcgis import GIS
import arcpy

df = pd.DataFrame.spatial.from_table(r'some_file_path_to_a_table_in_a_gdb')

df.shape

output: 0 x number of cols in input table

Tags (1)
0 Kudos
10 Replies
EricAnderson_DHS
Frequent Contributor

skip_nulls=False also worked for me

 

df = pd.DataFrame.spatial.from_table(filename=os.path.join(sde,"Table"),skip_nulls=False)