Description:
Reconstruct feature collection in GeoJSON format back in time.
Each feature will be assigned a plate id and moved back in time using the given reconstruction model.
Reconstructed features will be returned in GeoJSON format.
URL:
http://portal.gplates.org/service/reconstruct_feature_collection
Parameters:
feature_collection:
The feature collection in GeoJSON format.
time:
The time age in million years(Ma) to which the feature collection will be reconstructed.
The valid input value depends on the chosen reconstruction model.
model:
The reconstruction model name.
Models:
"default" -- The valid time range is between between 0 and 440.
Return:
Feature collection in GeoJson format.
Example:
http://portal.gplates.org/service/reconstruct_feature_collection/?feature_collection={
"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon",
"coordinates":[[[23,-20],[-9,35],[14,44],[23,-20]]]},"properties":{}}]}&time=140&model=default
Try it in an interactive online map
Feature Collection Examples:
#Polygon
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "Polygon",
"coordinates": [
[ [23, -20.0], [-9.0, 35.0],[14.0, 44.0],[23, -20.0] ]
]
},
"properties":{}
}]
}
#LineString
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "LineString",
"coordinates": [
[23, -20.0], [-9.0, 35.0]
]
},
"properties":{}
}]
}
#MultiPoint
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type": "MultiPoint",
"coordinates": [
[23, -20.0], [-9.0, 35.0],[14.0, 44.0]
]
},
"properties":{}
}]
}
#Point
{
"type":"FeatureCollection",
"features":
[{
"type":"Feature",
"geometry":
{
"type":"Point",
"coordinates":[51.0, 38.0]
},
"properties":{}
}]
}