Geopoint Object Property Compatibility Issue

Hi,

I have made a pipeline builder that creates a geopoint. When I preview in pipeline builder, it shows it as this type. (Picture Below).

Once the dataset is built it shows it as Struct, but of typeclass: geoPoint.geoPoint (Picture below)

However, when I go to create my ontology object, it sets the property as ‘Struct’ and I can’t choose geopoint.

What am I doing wrong?

Kind Regards
Sam

Hi!

Good question, and something I struggled with as well, as the documentation on this topic is not very clear.

To create a geopoint, create a string column of the format {lat},{lon} where {lat} and {lon} are latitude and longitude respectively. Then you should be able to define a property of type Geopoint in your ontology.

Let me know if this works for you and if you have any questions.
With kindest regards

3 Likes

Hi there,

The ontology manager expects an Ontology Geopoint, which is different from the regular Geopoint in Pipeline Builder. After constructing the Geopoint property, you’ll need to transform it into an Ontology Geopoint.

1 Like

Amazing, thank you so much