how to use inpolygon ?

7 visualizaciones (últimos 30 días)
pruth
pruth el 19 de Oct. de 2015
Respondida: Image Analyst el 19 de Oct. de 2015
i have table. 1st column is latitude 2nd is longitude and 3rd is bromine data. this is a girded data.this data is actually collected by polar satellite .
so now i want bromine data over latitude = -37.48; longitude = 77.34; using polygon. can anybody help?

Respuestas (1)

Image Analyst
Image Analyst el 19 de Oct. de 2015
Why do you want to use inpolygon()? Just use indexing:
indexesToUses = (latitude > -37.48) & (longitude > 77.34);
extractedBroming = bromine(indexesToUses);

Categorías

Más información sobre Elementary Polygons en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by