Skip to content

Deprecated Frame.append from pandas #8

@Fahdben

Description

@Fahdben

Since the version 1.4.0 of pandas the DataFrame.append is deprecated and should be replaced by pandas.concat.

The function build_reference_geom is still using the DataFrame.append method.

One way of solving this isssue is by replacing:

 output = output.append(tile)

with

 output = pd.concat([output, tile], ignore_index=True)

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions