Hi,
I have some questions regarding geometries in python. I am currently working on a script to read/write the geometry of one feature class and analyzing the contains method to determine if the center of a line is contained by the input polygon geometry. A question that I have is, what is the difference between making a new geometry object vs reading and utilizing the existing geometry object?
Ex: ['SHAPE@'] field to read the geometry vs Polygon (inputs, {spatial_reference}, {has_z}, {has_m}) to make a new geometry object.
The other question is can this be utilized with the contains method or will I need to create a whole new object in order to do so?
Any help on this would be greatly appreciated.